diff options
Diffstat (limited to 'systems')
-rw-r--r-- | systems/mcdowell.scm | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/systems/mcdowell.scm b/systems/mcdowell.scm index ca3eb7a..ee0c850 100644 --- a/systems/mcdowell.scm +++ b/systems/mcdowell.scm @@ -1,14 +1,9 @@ (define-module (systems mcdowell)) -;; string (define host-name* "mcdowell") -(define (users-mcdowell) - (use-modules (users id1000)) - (list uid1000-account)) - -;;;??????????????????????????????????????????????????????????????????? +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (define (home-environments-mcdowell) (use-modules (users id1000)) @@ -46,6 +41,10 @@ (append (desktop-services-mcdowell) (list (guix-home-service-mcdowell)))) +(define (users-mcdowell) + (use-modules (users id1000)) + (list uid1000-account)) + ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (define (operating-system*) @@ -65,7 +64,11 @@ ;; locale* (services services-mcdowell))) +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; + (define-public operating-system* (operating-system*)) +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; + operating-system* |