inputs: add devshell, git-agecrypt, base16, flake-utils
This commit is contained in:
parent
748756208f
commit
361ed098b4
37
flake.nix
37
flake.nix
|
@ -7,6 +7,31 @@
|
|||
repo = "nixpkgs";
|
||||
ref = "nixos-unstable";
|
||||
};
|
||||
|
||||
flake-utils = {
|
||||
type = "github";
|
||||
owner = "numtide";
|
||||
repo = "flake-utils";
|
||||
ref = "main";
|
||||
};
|
||||
|
||||
base16 = {
|
||||
type = "github";
|
||||
owner = "SenchoPens";
|
||||
repo = "base16.nix";
|
||||
ref = "main";
|
||||
};
|
||||
|
||||
devshell = {
|
||||
type = "github";
|
||||
owner = "numtide";
|
||||
repo = "devshell";
|
||||
ref = "main";
|
||||
inputs = {
|
||||
nixpkgs.follows = "nixpkgs";
|
||||
flake-utils.follows = "flake-utils";
|
||||
};
|
||||
};
|
||||
|
||||
home-manager = {
|
||||
type = "github";
|
||||
|
@ -25,6 +50,7 @@
|
|||
ref = "master";
|
||||
inputs = {
|
||||
nixpkgs.follows = "nixpkgs";
|
||||
flake-utils.follows = "flake-utils";
|
||||
};
|
||||
};
|
||||
|
||||
|
@ -56,6 +82,17 @@
|
|||
};
|
||||
};
|
||||
|
||||
git-agecrypt = {
|
||||
type = "github";
|
||||
owner = "vlaci";
|
||||
repo = "git-agecrypt";
|
||||
ref = "main";
|
||||
inputs = {
|
||||
nixpkgs.follows = "nixpkgs";
|
||||
flake-utils.follows = "flake-utils";
|
||||
};
|
||||
};
|
||||
|
||||
nur = {
|
||||
type = "github";
|
||||
owner = "nix-community";
|
||||
|
|
Loading…
Reference in New Issue