chore: adds disko and hazel host

This commit is contained in:
Ahwx 2025-07-30 16:33:15 +02:00
parent b3e155851f
commit efb7abb67e
2 changed files with 83 additions and 35 deletions

View file

@ -15,6 +15,7 @@
nixos-hardware.url = "github:nixos/nixos-hardware";
nixvim.url = "github:ahwxorg/nixvim-config";
sops-nix.url = "github:Mic92/sops-nix";
disko.url = "github:nix-community/disko/latest";
};
outputs =
@ -22,6 +23,7 @@
self,
nixpkgs,
sops-nix,
disko,
...
}@inputs:
let
@ -116,6 +118,16 @@
inherit self inputs username;
};
};
hazel = nixpkgs.lib.nixosSystem {
inherit system;
modules = [
(import ./hosts/hazel)
];
specialArgs = {
host = "hazel";
inherit self inputs username;
};
};
};
};
}