diff options
Diffstat (limited to 'files')
-rwxr-xr-x | files/.bin/home-reconfigure | 4 | ||||
-rwxr-xr-x | files/.bin/system-reconfigure | 4 | ||||
-rwxr-xr-x | files/.config/guix/channels.scm | 24 |
3 files changed, 9 insertions, 23 deletions
diff --git a/files/.bin/home-reconfigure b/files/.bin/home-reconfigure index 4d16cc0..f55b896 100755 --- a/files/.bin/home-reconfigure +++ b/files/.bin/home-reconfigure | |||
@@ -2,8 +2,8 @@ | |||
2 | 2 | ||
3 | if [ -n "$1" ]; then | 3 | if [ -n "$1" ]; then |
4 | guix home -L $1 reconfigure \ | 4 | guix home -L $1 reconfigure \ |
5 | -e '((@@ (jd utils) current-home))' | 5 | -e '((@ (jd utils) current-home))' |
6 | else | 6 | else |
7 | guix home reconfigure \ | 7 | guix home reconfigure \ |
8 | -e '((@@ (jd utils) current-home))' | 8 | -e '((@ (jd utils) current-home))' |
9 | fi; | 9 | fi; |
diff --git a/files/.bin/system-reconfigure b/files/.bin/system-reconfigure index dae18f6..e76ba27 100755 --- a/files/.bin/system-reconfigure +++ b/files/.bin/system-reconfigure | |||
@@ -2,9 +2,9 @@ | |||
2 | 2 | ||
3 | if [ -n "$1" ]; then | 3 | if [ -n "$1" ]; then |
4 | sudo -E guix system -L $1 reconfigure \ | 4 | sudo -E guix system -L $1 reconfigure \ |
5 | -e '((@@ (jd utils) current-operating-system))' | 5 | -e '((@ (jd utils) current-operating-system))' |
6 | else | 6 | else |
7 | sudo -E guix system reconfigure \ | 7 | sudo -E guix system reconfigure \ |
8 | -e '((@@ (jd utils) current-operating-system))' | 8 | -e '((@ (jd utils) current-operating-system))' |
9 | fi; | 9 | fi; |
10 | 10 | ||
diff --git a/files/.config/guix/channels.scm b/files/.config/guix/channels.scm index 13bee44..cb25ece 100755 --- a/files/.config/guix/channels.scm +++ b/files/.config/guix/channels.scm | |||
@@ -1,19 +1,5 @@ | |||
1 | (cons* (channel | 1 | (cons* (channel |
2 | (name 'rustup) | 2 | (name 'jdlugosz) |
3 | (url "https://github.com/declantsien/guix-rustup") | 3 | (branch "main") |
4 | (introduction | 4 | (url "https://github.com/jdlugosz963/dotfiles")) |
5 | (make-channel-introduction | 5 | %default-channels) |
6 | "325d3e2859d482c16da21eb07f2c6ff9c6c72a80" | ||
7 | (openpgp-fingerprint | ||
8 | "F695 F39E C625 E081 33B5 759F 0FC6 8703 75EF E2F5")))) | ||
9 | |||
10 | (channel | ||
11 | (name 'nonguix) | ||
12 | (url "https://gitlab.com/nonguix/nonguix") | ||
13 | ;; Enable signature verification: | ||
14 | (introduction | ||
15 | (make-channel-introduction | ||
16 | "897c1a470da759236cc11798f4e0a5f7d4d59fbc" | ||
17 | (openpgp-fingerprint | ||
18 | "2A39 3FFF 68F4 EF7A 3D29 12AF 6F51 20A0 22FB B2D5")))) | ||
19 | %default-channels) | ||