❄️ Dotfiles for our NixOS system configuration.
1[private]
2_default:
3 @just --list
4
5[private]
6[macos]
7boot:
8 echo "❌ Unsupported operation on macOS"
9 exit 1
10
11[linux]
12boot:
13 nh os boot .
14
15[macos]
16build:
17 nh darwin build .
18
19[linux]
20build:
21 nh os build .
22
23[macos]
24switch:
25 nh darwin switch .
26
27[linux]
28switch:
29 nh os switch .
30
31check:
32 nix flake check
33
34clean:
35 nix-collect-garbage --delete-older-than 3d
36 nix store optimise
37
38update:
39 nix flake update