From 733679c9448b4045066d86a716a6cd13152b529e Mon Sep 17 00:00:00 2001 From: Tim Van Baak Date: Tue, 1 Aug 2023 17:17:02 -0700 Subject: [PATCH] Update backyard hostname --- machine/backyard/default.nix | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/machine/backyard/default.nix b/machine/backyard/default.nix index dc5faf7..e03d516 100644 --- a/machine/backyard/default.nix +++ b/machine/backyard/default.nix @@ -14,13 +14,9 @@ boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; - networking.hostName = "nixos"; # Define your hostname. + networking.hostName = "backyard"; # Define your hostname. # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. - # Configure network proxy if necessary - # networking.proxy.default = "http://user:password@proxy:port/"; - # networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain"; - # Enable networking networking.networkmanager.enable = true; @@ -51,7 +47,6 @@ # Define a user account. Don't forget to set a password with ‘passwd’. users.users.tvb = { isNormalUser = true; - description = "Tim"; extraGroups = [ "networkmanager" "wheel" ]; packages = with pkgs; []; }; @@ -59,7 +54,7 @@ # List packages installed in system profile. To search, run: # $ nix search wget environment.systemPackages = with pkgs; [ - # vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default. + vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default. # wget git ];