From 12729981a306787609743840e4fdf69a6db2c41b Mon Sep 17 00:00:00 2001 From: Sridhar Ratnakumar Date: Tue, 7 Sep 2021 11:13:44 -0400 Subject: [PATCH] fix p71 --- flake.nix | 62 +++++++++++++++++++++++++++---------------------------- 1 file changed, 31 insertions(+), 31 deletions(-) diff --git a/flake.nix b/flake.nix index 02cbd12..af45ce0 100644 --- a/flake.nix +++ b/flake.nix @@ -55,36 +55,36 @@ ); }; in - { - # The "name" in nixosConfigurations.${name} should match the `hostname` - # - nixosConfigurations.p71 = mkHomeMachine - ./hosts/p71.nix - [ - inputs.nixos-hardware.nixosModules.lenovo-thinkpad-p53 - ./features/desktopish - #./features/gnome.nix - ./features/desktopish/guiapps.nix - #./features/virtualbox.nix - #./features/server-mode.nix - # ./features/postgrest.nix - ./features/devserver-mode.nix - ]; - nixosConfigurations.x1c7 = mkHomeMachine - ./hosts/x1c7.nix - [ - inputs.nixos-hardware.nixosModules.lenovo-thinkpad-x1-7th-gen - ./features/distributed-build.nix - ./features/gnome.nix - ./features/desktopish/guiapps.nix - ]; - nixosConfigurations.ryzen9 = mkHomeMachine - ./hosts/ryzen9.nix - [ - ./features/server/harden.nix - ./features/server/devserver.nix - ./features/ema/emanote.nix - ]; - }; + { + # The "name" in nixosConfigurations.${name} should match the `hostname` + # + nixosConfigurations.p71 = mkHomeMachine + ./hosts/p71.nix + [ + inputs.nixos-hardware.nixosModules.lenovo-thinkpad-p53 + ./features/desktopish + #./features/gnome.nix + ./features/desktopish/guiapps.nix + #./features/virtualbox.nix + #./features/server-mode.nix + # ./features/postgrest.nix + ./features/server/devserver.nix + ]; + nixosConfigurations.x1c7 = mkHomeMachine + ./hosts/x1c7.nix + [ + inputs.nixos-hardware.nixosModules.lenovo-thinkpad-x1-7th-gen + ./features/distributed-build.nix + ./features/gnome.nix + ./features/desktopish/guiapps.nix + ]; + nixosConfigurations.ryzen9 = mkHomeMachine + ./hosts/ryzen9.nix + [ + ./features/server/harden.nix + ./features/server/devserver.nix + ./features/ema/emanote.nix + ]; + }; }