mirror of
https://github.com/Superredstone/nixos.git
synced 2026-03-08 04:38:06 +01:00
27 lines
333 B
Makefile
27 lines
333 B
Makefile
default:
|
|
@just --list
|
|
|
|
all:
|
|
@echo "No command provided"
|
|
|
|
home:
|
|
echo "HOME is: '${HOME}'"
|
|
|
|
machine:
|
|
@echo "${HOSTNAME}"
|
|
|
|
switch:
|
|
nh os switch -a -H "${HOSTNAME}" .
|
|
|
|
test:
|
|
nh os test -a -H "${HOSTNAME}" .
|
|
|
|
update:
|
|
sudo nix flake update
|
|
|
|
upgrade: update switch
|
|
|
|
clean:
|
|
sudo nix-collect-garbage -d
|
|
sudo nix-store --optimise
|