diff options
| author | Devin Finlinson <devin.finlinson@pm.me> | 2023-11-20 03:24:35 -0700 |
|---|---|---|
| committer | Devin Finlinson <devin.finlinson@pm.me> | 2023-11-20 03:24:35 -0700 |
| commit | 912267079a8eaa6ac1d866ef6e02c1046febbb66 (patch) | |
| tree | 0f5be4476dbc748709641765039f05210d8bbeb3 /flake.nix | |
| parent | 29fbd6e057d2308987fee2537bd68a8e6d7727b5 (diff) | |
updated template with modern settings
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 14 |
1 files changed, 13 insertions, 1 deletions
@@ -232,7 +232,7 @@ ]; # specialArgs = { inherit inputs; }; }; - doretta = nixpkgs.lib.nixosSystem { + doretta = nixpkgs.lib.nixosSystem { # this is my build server modules = [ ./machines/doretta/configuration.nix ./machines/doretta/hardware-configuration.nix @@ -242,6 +242,18 @@ ./modules/nixos/system-packages.nix ]; }; + bosco = nixpkgs.lib.nixosSystem { # this is my networking server + modules = [ + ./machines/bosco/configuration.nix + ./machines/bosco/hardware-configuration.nix + + ./modules/nixos/nix-common.nix + ./modules/nixos/environment.nix + ./modules/nixos/system-packages.nix + + ./modules/nixos/headscale.nix + ]; + }; khad = nixpkgs.lib.nixosSystem { modules = [ ./machines/khad/configuration.nix |
