Home

dotnix @dc14f0a4651662ffb10b9ccbbc45e5b8dd4b59a4 - refs - log -
-
https://git.jolheiser.com/dotnix.git
My nix dotfiles
dotnix / justfile
- raw
 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
[private]
default:
	@just --choose

[private]
rebuild *args:
	@touch .dirty
	@git add .
	@sudo nixos-rebuild --flake . {{args}}
	@git rm -f .dirty

# Rebuild the current machine
switch *args:
	@just rebuild switch {{args}}

# Run colmena for remote deploy
colmena node:
	@nix run nixpkgs#colmena -- apply --on {{node}}

# Update the flake
update-flake:
	@nix flake update

# Update an individual input
update input:
	@nix flake lock --update-input {{input}}