1
1
Fork 0

Update backyard hostname

This commit is contained in:
Tim Van Baak 2023-08-01 17:17:02 -07:00
parent 3ba86c1115
commit 733679c944
1 changed files with 2 additions and 7 deletions

View File

@ -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
];