Fixing package issues and tidying configs

This commit is contained in:
2025-11-21 15:54:00 +01:00
parent 3add87caa4
commit ace15312a5
6 changed files with 15 additions and 10 deletions

View File

@@ -11,6 +11,11 @@
boot.loader.grub.enable = true;
boot.loader.grub.device = "/dev/sda";
# For systemd boot
#boot.loader.systemd-boot.enable = true;
#boot.loader.efi.canTouchEfiVariables = true;
# Networking
networking.hostName = "MYHOST";
networking.networkmanager.enable = true;
@@ -38,7 +43,7 @@
# User account
users.users.YOURUSERNAME = {
isNormalUser = true;
description = "Crib";
description = "User";
extraGroups = [ "networkmanager" "wheel" "video" "audio" ];
shell = pkgs.zsh;
};