feat(shell.nix): init
This commit is contained in:
parent
58fe7351c9
commit
706795d38d
1 changed files with 16 additions and 0 deletions
16
shell.nix
Normal file
16
shell.nix
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
let
|
||||||
|
sources = import ./npins;
|
||||||
|
|
||||||
|
pkgs = import sources."nixos-unstable" {
|
||||||
|
config.allowUnfree = true;
|
||||||
|
overlays = import ./pkgs/overlays.nix;
|
||||||
|
};
|
||||||
|
agenix = sources.agenix;
|
||||||
|
in
|
||||||
|
pkgs.mkShell {
|
||||||
|
packages = [
|
||||||
|
pkgs.npins
|
||||||
|
pkgs.colmena
|
||||||
|
(pkgs.callPackage "${agenix}/pkgs/agenix.nix" { })
|
||||||
|
];
|
||||||
|
}
|
Loading…
Reference in a new issue