summaryrefslogtreecommitdiffstats
path: root/files/.bin/home-reconfigure
diff options
context:
space:
mode:
authorjdlugosz963 <jdlugosz963@gmail.com>2024-09-20 15:49:53 +0200
committerjdlugosz963 <jdlugosz963@gmail.com>2024-09-20 16:35:16 +0200
commitc7c66c55061df867c7af05c6c82ccbe6f498c330 (patch)
tree8b62323d26cb3db7912bc604a0b43f921660b627 /files/.bin/home-reconfigure
parent41209e53c1a79947908e88e5f46b3569db4e93e2 (diff)
downloaddotfiles-c7c66c55061df867c7af05c6c82ccbe6f498c330.tar.gz
dotfiles-c7c66c55061df867c7af05c6c82ccbe6f498c330.zip
Change the way i reconfigure my system.
Diffstat (limited to 'files/.bin/home-reconfigure')
-rwxr-xr-xfiles/.bin/home-reconfigure8
1 files changed, 7 insertions, 1 deletions
diff --git a/files/.bin/home-reconfigure b/files/.bin/home-reconfigure
index f3a4e5f..4d16cc0 100755
--- a/files/.bin/home-reconfigure
+++ b/files/.bin/home-reconfigure
@@ -1,3 +1,9 @@
1#!/bin/sh 1#!/bin/sh
2 2
3JD_HOME=1 guix home -L $HOME/dotfiles/guix reconfigure $HOME/dotfiles/guix/jd/desktops/$(hostname).scm 3if [ -n "$1" ]; then
4 guix home -L $1 reconfigure \
5 -e '((@@ (jd utils) current-home))'
6else
7 guix home reconfigure \
8 -e '((@@ (jd utils) current-home))'
9fi;