From bdde956e62e35f492609c479506ef58b5e644ba9 Mon Sep 17 00:00:00 2001 From: Sridhar Ratnakumar Date: Sat, 30 Oct 2021 12:46:31 -0400 Subject: [PATCH] thick --- flake.nix | 18 +++--------------- hosts/{nexus.nix => thick.nix} | 2 +- 2 files changed, 4 insertions(+), 16 deletions(-) rename hosts/{nexus.nix => thick.nix} (98%) diff --git a/flake.nix b/flake.nix index 0c7084e..f68b312 100644 --- a/flake.nix +++ b/flake.nix @@ -58,23 +58,17 @@ # The "name" in nixosConfigurations.${name} should match the `hostname` # nixosConfigurations = { - nexus = mkComputer - ./hosts/nexus.nix + thick = mkComputer + ./hosts/thick.nix [ inputs.nixos-hardware.nixosModules.lenovo-thinkpad-p53 ./features/server/harden.nix - #./features/desktopish - ./features/kde.nix - ./features/desktopish/guiapps.nix - ./features/desktopish/fonts.nix ./features/server/devserver.nix - ./features/protonvpn.nix ./features/ema/emanote.nix #./features/virtualbox.nix ./features/lxd.nix - #./features/server-mode.nix + ./features/unlaptop.nix # ./features/postgrest.nix - ./features/server/devserver.nix ]; thin = mkComputer ./hosts/thin.nix @@ -112,12 +106,6 @@ }; in { - "P71" = mkHomeConfig ( - import ./home.nix { - inherit inputs system; - pkgs = import nixpkgs { inherit system; }; - } - ); # FIXME: This is broken on Clear Linux "x1c7" = mkHomeConfig { programs.git = import ./home/git.nix; diff --git a/hosts/nexus.nix b/hosts/thick.nix similarity index 98% rename from hosts/nexus.nix rename to hosts/thick.nix index 01c0ee2..ce466a0 100644 --- a/hosts/nexus.nix +++ b/hosts/thick.nix @@ -62,7 +62,7 @@ trustedUsers = [ "root" "srid" ]; }; - networking.hostName = "nexus"; # Define your hostname. + networking.hostName = "thick"; # Define your hostname. networking.networkmanager.enable = true; services.openssh.enable = true;