This repository has been archived on 2023-07-23. You can view files and clone it, but cannot push or open issues or pull requests.
gpd-configurations/Makefile
2023-06-29 07:09:41 +08:00

25 lines
832 B
Makefile

############################################################################
#
# Nix commands related to the local machine
#
############################################################################
deploy:
nixos-rebuild switch --flake '.#gpd' --use-remote-sudo
debug:
nixos-rebuild switch --flake '.#gpd' --use-remote-sudo --show-trace --verbose
update:
nix flake update --extra-experimental-features nix-command
history:
nix profile history --profile /nix/var/nix/profiles/system --extra-experimental-features nix-command
gc:
# remove all generations older than 7 days
sudo nix profile wipe-history --profile /nix/var/nix/profiles/system --older-than 7d --extra-experimental-features nix-command
# garbage collect all unused nix store entries
sudo nix store gc --debug --extra-experimental-features nix-command