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.
18 lines
494 B
Nix
18 lines
494 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
|
|
{
|
|
home.shellAliases = {
|
|
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\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"'';
|
|
};
|
|
}
|