-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJustfile
53 lines (38 loc) · 1.23 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
# just is a command runner, Justfile is very similar to Makefile, but simpler.
############################################################################
#
# Darwin related commands
#
############################################################################
init ARG:
bash ./scripts/init.sh {{ARG}}
rebuild:
darwin-rebuild switch --verbose --impure --flake .
############################################################################
#
# nix related commands
#
############################################################################
update:
nix flake update
history:
nix profile history --profile /nix/var/nix/profiles/system
gc:
# remove all generations older than 7 days
sudo nix profile wipe-history --profile /nix/var/nix/profiles/system --older-than 7d
# garbage collect all unused nix store entries
sudo nix store gc --debug
fmt:
# format the nix files in this repo
nix fmt
clean:
rm -rf result
############################################################################
#
# Misc commands
#
############################################################################
nvim-reset:
bash ./scripts/nvim-reset.sh
start-kanata:
sudo kanata -n -c ~/.config/kanata/config.kbd