diff options
Diffstat (limited to 'Biz/Serval.scm')
-rw-r--r-- | Biz/Serval.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Biz/Serval.scm b/Biz/Serval.scm index 87cc238..1ccab41 100644 --- a/Biz/Serval.scm +++ b/Biz/Serval.scm @@ -37,7 +37,7 @@ #:use-module ((srfi srfi-9) #:select (define-record-type)) #:use-module ((Alpha Core) - #:select (second rest fmt prn first comment nil)) + #:select (second rest fmt prn first comment)) #:use-module ((Alpha Test) #:select (testing)) #:use-module ((Alpha Shell) #:prefix Shell.) @@ -157,14 +157,14 @@ TODO: ensure kit-name is unique (define (update-kit! args) ;; TODO: load kit and update with new config file - (let ([kit nil]) + (let ([kit #nil]) (Shell.exec (fmt "nix-env -p ~a/system -I nixos-config=~a -f <nixpkgs/nixos> --set -A system" *nix-profiles-dir* - (get-system-path nil))))) + (get-system-path #nil))))) (define (run-in-kit! args) - (let ([kit nil]) + (let ([kit #nil]) (Shell.exec (fmt "systemd-run --machine ~a --pty --quiet -- ~{~a~}" (kit-name kit) args)))) |