This commit is contained in:
zackartz 2024-05-03 13:40:06 -04:00
parent 78ac00643c
commit d31b1b1312
No known key found for this signature in database
GPG key ID: 5B53E53A9A514DBA

View file

@ -18,6 +18,8 @@
networking.hostName = "pluto"; # Define your hostname. networking.hostName = "pluto"; # Define your hostname.
nix.settings.experimental-features = ["nix-command" "flakes"];
# Enable networking # Enable networking
networking.networkmanager.enable = true; networking.networkmanager.enable = true;
@ -45,12 +47,17 @@
xkbVariant = ""; xkbVariant = "";
}; };
programs.zsh.enable = true;
users.mutableUsers = false;
# Define a user account. Don't forget to set a password with passwd. # Define a user account. Don't forget to set a password with passwd.
users.users.zack = { users.users.zack = {
isNormalUser = true; isNormalUser = true;
description = "zack"; description = "zack";
extraGroups = ["networkmanager" "wheel"]; extraGroups = ["networkmanager" "wheel"];
shell = pkgs.zsh;
packages = with pkgs; []; packages = with pkgs; [];
hashedPassword = "$6$rounds=2000000$673Iz4rM8Dr9yz7C$Xq5JXxE7ioUrpZmMf3uTrPN2ODrEu3Sph6EhWyPoM5Ty./FhgB9hU0mz1yYo8sUj7wdUMWfR98haVJ24Wv3BK/";
}; };
# List packages installed in system profile. To search, run: # List packages installed in system profile. To search, run: