add conifer host (desktop wsl)

This commit is contained in:
xunuwu 2025-07-04 06:07:03 +02:00
parent 8310a093e5
commit 3b5e4489a4
Signed by: xun
SSH key fingerprint: SHA256:vVkcg/JhxJ8bhD+XdjfwP9m9m9+1+41rvl8St1Rj+Sw
6 changed files with 185 additions and 14 deletions

View file

@ -30,7 +30,11 @@
l.nixosSystem {
modules = [
./hosts/${hostname}
./secrets/${hostname}
(
if b.pathExists ./secrets/${hostname}
then ./secrets/${hostname}
else {}
)
inputs.sops-nix.nixosModules.sops
];
specialArgs = {
@ -107,6 +111,8 @@
impermanence.url = "github:nix-community/impermanence";
nixos-wsl.url = "github:nix-community/nixos-wsl";
disko.url = "github:nix-community/disko";
disko.inputs.nixpkgs.follows = "nixpkgs";