nixos-config/Makefile

27 lines
533 B
Makefile
Raw Normal View History

2024-07-07 21:57:17 +02:00
.PHONY: upgrade update switch home clean gc home history repl
2024-09-23 21:58:33 +02:00
upgrade: update home switch clean gc
2024-07-07 21:57:17 +02:00
update:
@nix flake update
switch:
2024-12-04 21:22:01 +01:00
@nh os switch . --ask
2024-07-07 21:57:17 +02:00
home:
2024-12-04 21:22:01 +01:00
@nh home switch --ask .
2024-07-07 21:57:17 +02:00
clean:
# remove all generations older than 30 days
@sudo nix profile wipe-history --profile /nix/var/nix/profiles/system --older-than 30d
gc:
# garbage collect all unused nix store entries
@sudo nix-collect-garbage --delete-old
history:
@nix profile history --profile /nix/var/nix/profiles/system
repl:
2024-07-07 22:42:55 +02:00
@nix repl -f flake:nixpkgs