feat(shell.nix): init
This commit is contained in:
parent
58fe7351c9
commit
545745bbf7
1 changed files with 24 additions and 0 deletions
24
shell.nix
Normal file
24
shell.nix
Normal file
|
@ -0,0 +1,24 @@
|
|||
let
|
||||
sources = import ./npins;
|
||||
|
||||
importNixpkgsPath =
|
||||
arch: p:
|
||||
import p {
|
||||
config.allowUnfree = true;
|
||||
overlays = import ./pkgs/overlays.nix;
|
||||
system = arch;
|
||||
};
|
||||
|
||||
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