nix-config/flake.nix

92 lines
2.1 KiB
Nix
Raw Normal View History

2022-09-26 21:28:35 +01:00
{
2023-07-30 23:01:46 +01:00
inputs = {
2025-07-30 18:00:00 +01:00
agenix = {
inputs.nixpkgs.follows = "nixpkgs";
url = "github:ryantm/agenix";
};
2024-12-09 22:35:34 +00:00
2025-07-30 18:00:00 +01:00
conf-vim = {
flake = false;
url = "github:tjdevries/conf.vim";
};
2025-07-29 11:27:46 +01:00
2025-07-30 18:00:00 +01:00
disko = {
inputs.nixpkgs.follows = "nixpkgs";
url = "github:nix-community/disko";
};
2025-06-01 23:22:09 +01:00
2025-07-30 18:00:00 +01:00
edit-alternate-vim = {
flake = false;
url = "github:tjdevries/edit_alternate.vim";
};
2025-07-29 11:27:46 +01:00
2025-07-09 00:23:48 +01:00
flake-parts.url = "github:hercules-ci/flake-parts";
2025-08-01 10:22:21 +01:00
git-repo-updater = {
inputs.flake-parts.follows = "flake-parts";
inputs.import-tree.follows = "import-tree";
inputs.nixpkgs.follows = "nixpkgs";
url = "git+https://code.oliverdavies.uk/opdavies/git-repo-updater";
};
2025-07-30 18:00:00 +01:00
home-manager = {
inputs.nixpkgs.follows = "nixpkgs";
url = "github:nix-community/home-manager/master";
};
2025-03-08 21:00:55 +00:00
2025-07-18 00:56:19 +01:00
import-tree.url = "github:vic/import-tree";
2025-07-30 18:00:00 +01:00
nix-index-database = {
inputs.nixpkgs.follows = "nixpkgs";
url = "github:nix-community/nix-index-database";
};
2025-07-17 12:48:47 +01:00
2025-03-08 21:00:55 +00:00
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
2025-07-30 18:00:00 +01:00
nixvim = {
inputs.flake-parts.follows = "flake-parts";
inputs.nixpkgs.follows = "nixpkgs";
url = "github:nix-community/nixvim";
};
2025-06-02 02:09:06 +01:00
nixpkgs-stable.url = "github:nixos/nixpkgs/nixos-24.11";
2025-07-09 06:50:07 +01:00
2025-04-23 17:28:26 +01:00
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
2025-02-13 22:53:24 +00:00
2025-07-30 18:00:00 +01:00
nur = {
inputs.nixpkgs.follows = "nixpkgs";
url = "github:nix-community/NUR";
};
2025-07-29 11:27:46 +01:00
2025-08-08 02:07:21 +01:00
rwxrob-dot = {
flake = false;
url = "github:rwxrob/dot";
};
2025-07-30 18:00:00 +01:00
standard-vim = {
flake = false;
url = "github:tjdevries/standard.vim";
};
2025-07-29 12:18:40 +01:00
2025-08-01 01:10:58 +01:00
vim-heritage = {
flake = false;
url = "github:jessarcher/vim-heritage";
};
2025-07-30 18:00:00 +01:00
vim-textobj-xmlattr = {
flake = false;
url = "github:whatyouhide/vim-textobj-xmlattr";
};
2023-07-30 23:01:46 +01:00
};
2022-09-26 21:28:35 +01:00
outputs =
2025-07-09 02:12:31 +01:00
inputs@{ flake-parts, ... }:
2025-07-09 00:23:48 +01:00
flake-parts.lib.mkFlake { inherit inputs; } {
2025-07-09 02:12:31 +01:00
flake = {
overlays = import ./overlays { inherit inputs; };
};
2025-07-09 00:23:48 +01:00
2025-08-18 12:00:00 +01:00
imports = [ (inputs.import-tree ./modules) ];
2022-09-26 21:28:35 +01:00
};
}