feat(jeeves)!: add config

Automatic disk partitioning using `disko`
Automatic secrets management using `agenix`
Automatic deployment using `deploy-rs`
This commit is contained in:
reo101 2023-10-16 21:42:10 +03:00
parent 64950f00f3
commit 8f17e5849a
Signed by: reo101
GPG key ID: 675AA7EF13964ACB
12 changed files with 869 additions and 55 deletions

View file

@ -1,6 +1,8 @@
# If pkgs is not defined, instanciate nixpkgs from locked commit
{ pkgs ? (import ../nixpkgs.nix) { }
, inputs
, outputs
, ...
}: {
default = import ./default { inherit pkgs; };
default = import ./default { inherit pkgs inputs outputs; };
}

View file

@ -1,5 +1,7 @@
# Shell for bootstrapping flake-enabled nix and other tooling
{ pkgs
, inputs
, outputs
, ...
}: pkgs.mkShell {
NIX_CONFIG = ''
@ -9,5 +11,9 @@
nix
home-manager
git
deploy-rs
# inputs.agenix.packages.${pkgs.system}.agenix
inputs.ragenix.packages.${pkgs.system}.ragenix
rage
];
}