-
Notifications
You must be signed in to change notification settings - Fork 1
/
justfile
69 lines (53 loc) · 1.56 KB
/
justfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# default action: list actions
default:
@just --list
# Rebuild the system
switch:
sudo NIXOS_LABEL="$(label)" nixos-rebuild switch --fast --impure --flake .#default --show-trace
# Build a new configuration
boot:
sudo NIXOS_LABEL="$(label)" nixos-rebuild boot --fast --impure --flake .#default --show-trace
# Dry-build a new configuration
dry:
sudo nixos-rebuild dry-activate --fast --flake .#default --show-trace
# Rebuild the home config
home:
home-manager switch -b backup --flake .#default switch --show-trace
# Format code
fmt:
nix fmt
# Run tests
test:
nix flake check --show-trace --print-build-logs --verbose
# Update all inputs
up:
nix flake update --refresh --commit-lock-file
# Update specific input. Usage: just upp nixpkgs
upp input:
nix flake update {{input}}
# Show what has yet to be persisted in a folder. Usage: just ephemeral $HOME | $PAGER
ephemeral dir="$HOME":
list-ephemeral {{dir}}
# Open a Nix REPL - run manually to load flake: `:lf .`
repl:
nix repl
# Remove all generations older than 7 days
clean:
sudo nix profile wipe-history --profile /nix/var/nix/profiles/system --older-than 7d
# Garbage collect all unused nix store entries
gc:
sudo nix store gc --debug
nix-collect-garbage --delete-old
sudo nix-collect-garbage --delete-old
# Encode secrets
encode:
sops -e secrets.yml > secrets.enc.yml
# Decode secrets
decode:
sops -d secrets.enc.yml > secrets.yml
# Check when inputs were last updated
age:
check-age
# Patch persisted wine/steam desktop entries to run xwayland
patch-desktop-xwayland:
patch-desktop-xwayland