nix/shell.nix

23 lines
652 B
Nix
Raw Normal View History

2023-08-15 05:29:23 +02:00
# shell.nix
2023-09-19 10:52:43 +02:00
# A nixpkgs instance that is grabbed from the pinned nixpkgs commit in the lock file
# Useful to avoid using channels when using legacy nix commands
2023-09-19 11:19:59 +02:00
{
2023-09-19 13:52:23 +02:00
pkgs ? (import ./lib/nixpkgs.nix ) { },
2023-09-19 11:19:59 +02:00
sops-nix ? (import ./lib/sops-nix.nix) { }
}: {
2023-09-19 10:54:33 +02:00
default = pkgs.mkShell {
2023-09-19 10:52:43 +02:00
NIX_CONFIG = "experimental-features = nix-command flakes";
# imports all files ending in .asc/.gpg
sopsPGPKeyDirs = [
2023-09-19 10:56:25 +02:00
"${toString ./.}/keys/hosts"
2023-09-19 10:52:43 +02:00
"${toString ./.}/keys/users"
];
2023-09-19 14:03:06 +02:00
2023-09-19 10:52:43 +02:00
nativeBuildInputs = [
pkgs.nix
pkgs.home-manager
pkgs.git
2023-09-19 14:03:06 +02:00
(pkgs.callPackage sops-nix {}).sops-import-keys-hook
2023-09-19 10:52:43 +02:00
];
2023-09-19 10:54:50 +02:00
};
2023-08-15 05:29:23 +02:00
}