diff options
author | Chloe Brown <chloe.brown.00@outlook.com> | 2022-09-15 12:32:36 +0100 |
---|---|---|
committer | Chloe Brown <chloe.brown.00@outlook.com> | 2022-09-15 12:32:36 +0100 |
commit | 9dd450e5be17100f6cfe0daaaa65a7022d3a70b6 (patch) | |
tree | 3696f10a1d10c1851c5cadbec092d75d2978d5da | |
parent | c08bb5052bcb1f4d94b6c6cedfc0701ef860a39c (diff) |
home-unattended-upgrades: make files gexps.
-rw-r--r-- | yellowsquid/services/home/upgrades.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/yellowsquid/services/home/upgrades.scm b/yellowsquid/services/home/upgrades.scm index d4d42a3..b5ff009 100644 --- a/yellowsquid/services/home/upgrades.scm +++ b/yellowsquid/services/home/upgrades.scm @@ -25,7 +25,7 @@ home-unattended-upgrade-configuration make-home-unattended-upgrade-configuration home-unattended-upgrade-configuration? (configuration-file home-unattended-upgrade-configuration-file - (default (string-append (getenv "XDG_CONFIG_HOME") "/guix/home.scm"))) + (default #~(string-append (getenv "XDG_CONFIG_HOME") "/guix/home.scm"))) (schedule home-unattended-upgrade-configuration-schedule (default "30 01 * * 0")) (channels home-unattended-upgrade-configuration-channels @@ -40,7 +40,7 @@ (default %home-unattended-upgrade-log-file))) (define %home-unattended-upgrade-log-file - (string-append (getenv "XDG_LOG_HOME") "/unattended-upgrade.log")) + #~(string-append (getenv "XDG_LOG_HOME") "/unattended-upgrade.log")) (define (home-unattended-upgrade-mcron-jobs config) (define channels |