feat(shell.nix): init

This commit is contained in:
catvayor 2024-10-11 13:16:58 +02:00
parent 58fe7351c9
commit 706795d38d
Signed by: lbailly
GPG key ID: CE3E645251AC63F3

16
shell.nix Normal file
View 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" { })
];
}