Compare commits

..

2 Commits

Author SHA1 Message Date
5748f4b2e7 Merge pull request #16 from caperren/working-branch
Trace versions of rebuild and update commands, fixes, firefox as default web handler
2025-10-30 11:01:52 -07:00
8a573b1726 Added trace versions of nix rebuild and update, fixed a font name that was changed, commented nvtop for failing build, switched btop to cuda variant 2025-10-30 10:57:17 -07:00
3 changed files with 9 additions and 4 deletions

View File

@@ -20,7 +20,7 @@
services.hardware.openrgb.enable = true;
environment.systemPackages = with pkgs; [
btop
btop-cuda
desktop-file-utils
dnsutils
ffmpeg-full
@@ -40,7 +40,7 @@
networkmanager
networkmanagerapplet
nmap
nvtopPackages.full
# nvtopPackages.full # <- Build failure: https://github.com/nixos/nixpkgs/issues/456928
openrgb-with-all-plugins
pciutils
rofi-bluetooth

View File

@@ -13,7 +13,7 @@
fonts.packages = with pkgs; [
noto-fonts
noto-fonts-emoji
noto-fonts-color-emoji
liberation_ttf
fira-code
fira-code-symbols

View File

@@ -23,9 +23,14 @@
programs.bash.shellAliases = {
# Nix rebuild, switch
nrs = "bash -c \"cd /etc/nixos && sudo nixos-rebuild switch --flake .#$(hostname) ; exit\"";
# with tracing
tnrs = "bash -c \"cd /etc/nixos && sudo nixos-rebuild switch --show-trace --flake .#$(hostname) ; exit\"";
# Nix flake update, rebuild, switch
nus = "bash -c \"cd /etc/nixos && sudo nix flake update && sudo nixos-rebuild switch --flake .#$(hostname) ; exit\"";
nus = "bash -c \"cd /etc/nixos && sudo nix flake update && nrs ; exit\"";
# with tracing
tnus = "bash -c \"cd /etc/nixos && sudo nix flake update && tnrs ; exit\"";
# Special cleanup, needed when efi partition runs out of space. Deletes all but the last five generations.
# Remember to make that partition bigger in the future...