reo101
8f17e5849a
Automatic disk partitioning using `disko` Automatic secrets management using `agenix` Automatic deployment using `deploy-rs`
19 lines
400 B
Nix
19 lines
400 B
Nix
# Shell for bootstrapping flake-enabled nix and other tooling
|
|
{ pkgs
|
|
, inputs
|
|
, outputs
|
|
, ...
|
|
}: pkgs.mkShell {
|
|
NIX_CONFIG = ''
|
|
extra-experimental-features = nix-command flakes repl-flake
|
|
'';
|
|
nativeBuildInputs = with pkgs; [
|
|
nix
|
|
home-manager
|
|
git
|
|
deploy-rs
|
|
# inputs.agenix.packages.${pkgs.system}.agenix
|
|
inputs.ragenix.packages.${pkgs.system}.ragenix
|
|
rage
|
|
];
|
|
}
|