rpi3-configurations/Makefile

26 lines
696 B
Makefile
Raw Permalink Normal View History

2023-07-18 13:52:59 +00:00
############################################################################
#
# Nix commands related to the local machine
#
############################################################################
deploy:
2023-07-18 14:08:18 +00:00
nixos-rebuild switch --flake '.#default' --use-remote-sudo
2023-07-18 13:52:59 +00:00
debug:
2023-07-18 14:08:18 +00:00
nixos-rebuild switch --flake '.#default' --use-remote-sudo --show-trace --verbose
2023-07-18 13:52:59 +00:00
update:
nix flake update
history:
nix profile history --profile /nix/var/nix/profiles/system
gc:
# remove all generations older than 7 days
sudo nix profile wipe-history --profile /nix/var/nix/profiles/system --older-than 3d
# garbage collect all unused nix store entries
sudo nix store gc --debug
nix-collect-garbage -d