diff options
author | Marek Paśnikowski <marekpasnikowski@protonmail.com> | 2022-10-31 01:36:58 +0100 |
---|---|---|
committer | Marek Paśnikowski <marekpasnikowski@protonmail.com> | 2022-10-31 01:36:58 +0100 |
commit | 2c7f501dc575657769a8f0e467ad06742e316733 (patch) | |
tree | 706528053b3b0b519a787747b25f1fc4c9b3617a /home-configuration.scm | |
parent | 06f8be48bdad37ecf4ab923bb182deebce2ae119 (diff) |
Home configuration: break out guix-home and home-configuration
Diffstat (limited to 'home-configuration.scm')
-rw-r--r-- | home-configuration.scm | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/home-configuration.scm b/home-configuration.scm index 7b76bd0..a6d3384 100644 --- a/home-configuration.scm +++ b/home-configuration.scm @@ -20,10 +20,16 @@ (define pull-guix- "pull-guix --allow-downgrades --disable-authentication") +(define guix-home + "guix home reconfigure ") + +(define home-configuration + "home-configuration.scm") + (define reconfigure-home - (string-append "guix home reconfigure " + (string-append guix-home config-prefix - "home-configuration.scm")) + home-configuration)) (define reconfigure-home- (string-append reconfigure-home |