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

@ -7,11 +7,12 @@
{
home.shellAliases = {
nixreb = "sudo nixos-rebuild switch --flake /home/jack/nixos/#t480";
nixrebt = "sudo nixos-rebuild switch --flake /home/jack/nixos/#t480";
nixrebd = "sudo nixos-rebuild switch --flake /home/jack/nixos/#desktop";
v = "nvim";
c = "clear";
cl = "clear && ls";
nixconf = "nvim ~/nixos/";
a = ''echo -e " a -> List aliases nixreb -> Rebuild nixos config\n nixconf -> Open nixos config\n v -> nvim\n c -> clear\n cl -> clear && ls"'';
a = ''echo -e " a -> List aliases\n nixreb[t,d] -> Rebuild nixos config [t for #t480, d for #dektop]\n nixconf -> Open nixos config\n v -> nvim\n c -> clear\n cl -> clear && ls"'';
};
}