Desktop config updates

Programs Added (off the top of my head):
    - spotify
    - printer stuff
    Files Added:
    - print.nix
    Important Changes:
    - Lowered linux kernel version on desktop to 6.6 as the upstream
      kernel was causing the system to restart spontaneously - most
      likely a bug with Gigabyte Z790 UD boards. The t480 config still
      uses the upstream kernel.
This commit is contained in:
Jack Mechem 2025-12-05 13:02:47 -08:00
parent 89f570a617
commit f53a991884
8 changed files with 335 additions and 17 deletions

View file

@ -16,12 +16,13 @@
../../modules/nixos/system-packages.nix
../../modules/nixos/user-jack.nix
../../modules/nixos/sound.nix
../../modules/nixos/print.nix
];
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.kernelPackages = pkgs.linuxPackages_latest;
boot.kernelPackages = pkgs.linuxKernel.packages.linux_6_6;
networking.hostName = "jackdesk";
networking.networkmanager.enable = true;
@ -33,9 +34,6 @@
time.timeZone = "America/Los_Angeles";
# Enable CUPS to print documents.
services.printing.enable = true;
services.dbus.enable = true;
programs.zsh.enable = true;
@ -67,6 +65,6 @@
services.openssh.enable = true;
system.stateVersion = "25.05";
system.stateVersion = "25.11";
}