diff options
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -8,6 +8,10 @@ # Home manager home-manager.url = "github:nix-community/home-manager/release-24.11"; home-manager.inputs.nixpkgs.follows = "nixpkgs"; + + # Disko + disko.url = "github:nix-community/disko"; + disko.inputs.nixpkgs.follows = "nixpkgs"; }; outputs = { @@ -25,6 +29,14 @@ specialArgs = {inherit inputs outputs;}; modules = [./nixos/configuration.nix]; }; + antares = nixpkgs.lib.nixosSystem { + system = "x86_64-linux"; + modules = [ + disko.nixosModules.disko + ./hosts/antares/configuration.nix + ./hosts/antares/hardware-configuration.nix + ]; + }; }; # Standalone home-manager configuration entrypoint |
