commit 6be514c79d8f2f96b71a14953df42848364680ba parent 3a65d7578950565d9de08a34ce6130dcebc6f136 Author: Vineet Kumar <git@vineetk.net> Date: Wed, 21 Jan 2026 00:26:23 -0500 move account out of base into systems Diffstat:
| M | epistemia/systems/base-system.scm | | | 8 | -------- |
| M | epistemia/systems/demiurge.scm | | | 8 | ++++++++ |
| M | epistemia/systems/saklas.scm | | | 8 | ++++++++ |
3 files changed, 16 insertions(+), 8 deletions(-)
diff --git a/epistemia/systems/base-system.scm b/epistemia/systems/base-system.scm @@ -11,14 +11,6 @@ (timezone "Canada/Eastern") (locale "en_US.utf8") - (users (cons (user-account - (name "vin") - (comment "Vineet") - (shell (file-append bash "/bin/bash")) - (group "users") - (supplementary-groups '("wheel" "audio" "video" "input" "seat" "tty" "cgroup"))) ;; TODO remove docker - %base-user-accounts)) - ;; should be set per-system (kernel '()) (firmware '()) diff --git a/epistemia/systems/demiurge.scm b/epistemia/systems/demiurge.scm @@ -46,6 +46,14 @@ (inherit base-system) (host-name "demiurge") + (users (cons (user-account + (name "vin") + (comment "Vineet") + (shell (file-append bash "/bin/bash")) + (group "users") + (supplementary-groups '("wheel" "audio" "video" "input" "seat" "tty" "cgroup"))) ;; TODO remove docker + %base-user-accounts)) + (kernel linux-6.17) (kernel-arguments (list "net.ifnames=0" "modprobe.blacklist=snd_hda_intel")) (kernel-loadable-modules (list (list zfs-linux "module"))) diff --git a/epistemia/systems/saklas.scm b/epistemia/systems/saklas.scm @@ -27,6 +27,14 @@ (inherit base-system) (host-name "saklas") + (users (cons (user-account + (name "vin") + (comment "Vineet") + (shell (file-append bash "/bin/bash")) + (group "users") + (supplementary-groups '("wheel"))) + %base-user-accounts)) + (kernel linux-6.17) (kernel-arguments (list "net.ifnames=0")) (kernel-loadable-modules (list (list zfs-linux "module")))