rix101/shells/default/default.nix

21 lines
491 B
Nix
Raw Normal View History

2023-02-07 03:02:09 +01:00
# Shell for bootstrapping flake-enabled nix and other tooling
{ pkgs
, inputs
2023-02-07 03:02:09 +01:00
, ...
}: pkgs.mkShellNoCC {
NIX_CONFIG = ''
extra-experimental-features = nix-command flakes
'';
nativeBuildInputs = with pkgs; [
nixVersions.monitored.latest
home-manager
git
wireguard-tools
deploy-rs
# inputs.agenix.packages.${pkgs.system}.agenix
# inputs.ragenix.packages.${pkgs.system}.ragenix
rage
inputs.agenix-rekey.packages.${pkgs.system}.agenix-rekey
];
}