Files
nixos-configs/shell.nix
2025-12-31 12:01:37 +01:00

16 lines
289 B
Nix

{pkgs ? import <nixpkgs> {}, ...}: {
default = pkgs.mkShell {
NIX_CONFIG = "extra-experimental-features = nix-command flakes ca-derivations";
nativeBuildInputs = with pkgs; [
nix
home-manager
git
sops
ssh-to-age
gnupg
age
];
};
}