From 74585be49ce99585f0bfb649402cc807a6802fe7 Mon Sep 17 00:00:00 2001 From: Marek Paśnikowski Date: Sun, 28 Jul 2024 16:53:41 +0200 Subject: refactor!: introduce user obfuscation style --- systems/ayase/system-configuration.scm | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) (limited to 'systems/ayase') diff --git a/systems/ayase/system-configuration.scm b/systems/ayase/system-configuration.scm index 3f4506a..b31d5f0 100644 --- a/systems/ayase/system-configuration.scm +++ b/systems/ayase/system-configuration.scm @@ -16,10 +16,10 @@ ;;#:use-module (gnu services xorg) - ;; marekpasnikowski-account - ;; marekpasnikowski-home-environment - ;; marekpasnikowski-username - #:use-module (users marekpasnikowski) + ;; uid1000-account + ;; uid1000-home-environment + ;; uid1000-name + #:use-module (users id1000) ;; linux ;; linux-firmware @@ -42,16 +42,14 @@ (define users* (let* ((system-groups (list "wheel")) - (supplementary-groups* (append system-groups)) - - (marekpasnikowski (marekpasnikowski-account supplementary-groups*))) - (list marekpasnikowski))) + (supplementary-groups* (append system-groups))) + (list (uid1000-account supplementary-groups*)))) ;; record operating-system (define-public ayase (let* ((bootloader-targets (list "/boot/efi")) (efi-filesystem-id (uuid "B4FB-CBD9" 'fat32)) - (home-environments `((,marekpasnikowski-username ,(marekpasnikowski-home-environment host-name*)))) + (home-environments `((,uid1000-name ,(uid1000-home-environment host-name*)))) (root-filesystem-id (uuid "615a98cd-a632-4ee5-a6f4-e5ebcaa6fb8c")) (efi-partition (file-system (mount-point "/boot/efi") -- cgit v1.2.3