❄️ Dotfiles for our NixOS system configuration.

feat: justfile

Chloe b32b9bb2 a6d3143f

Changed files
+40
modules
+39
justfile
···
+
[private]
+
_default:
+
@just --list
+
+
[private]
+
[macos]
+
boot:
+
echo "❌ Unsupported operation on macOS"
+
exit 1
+
+
[linux]
+
boot:
+
nh os boot .
+
+
[macos]
+
build:
+
nh darwin build .
+
+
[linux]
+
build:
+
nh os build .
+
+
[macos]
+
switch:
+
nh darwin switch .
+
+
[linux]
+
switch:
+
nh os switch .
+
+
check:
+
nix flake check
+
+
clean:
+
nix-collect-garbage --delete-older-than 3d
+
nix store optimise
+
+
update:
+
nix flake update
+1
modules/base/packages.nix
···
nil
jq
nixfmt
+
just
];
}