diff options
| author | Dominik Kaiser | 2025-02-15 20:59:42 +0100 |
|---|---|---|
| committer | Dominik Kaiser | 2025-02-15 20:59:42 +0100 |
| commit | 8a180e440b2a97e0e8a0293d180d8783dd7ead4f (patch) | |
| tree | 796c3e7819545439b606d7d11d664b493d8ab493 /flake.nix | |
| parent | 8e8a81317784982545fef27a0685a601ca7f68e4 (diff) | |
| download | nixos-8a180e440b2a97e0e8a0293d180d8783dd7ead4f.tar.gz nixos-8a180e440b2a97e0e8a0293d180d8783dd7ead4f.zip | |
Add server config
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 |
