From a0207d4cb365839a9eaf09e64b68291e69c54b24 Mon Sep 17 00:00:00 2001 From: Christine Dodrill Date: Thu, 10 Jun 2021 21:24:41 -0400 Subject: [PATCH] dax Signed-off-by: Christine Dodrill --- hosts/dax/config.scm | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 hosts/dax/config.scm diff --git a/hosts/dax/config.scm b/hosts/dax/config.scm new file mode 100644 index 0000000..2856251 --- /dev/null +++ b/hosts/dax/config.scm @@ -0,0 +1,44 @@ +;; This is an operating system configuration generated +;; by the graphical installer. + +(use-modules (gnu)) +(use-service-modules desktop networking ssh) + +(operating-system + (locale "en_CA.utf8") + (timezone "America/Toronto") + (keyboard-layout (keyboard-layout "us")) + (host-name "dax") + (users (cons* (user-account + (name "xe") + (comment "Xe") + (group "users") + (home-directory "/home/xe") + (supplementary-groups + '("wheel" "netdev" "audio" "video"))) + %base-user-accounts)) + (packages + (append + (list (specification->package "nss-certs")) + %base-packages)) + (services + (append + (list (service openssh-service-type) + (service network-manager-service-type) + (service wpa-supplicant-service-type)) + %base-services)) + (bootloader + (bootloader-configuration + (bootloader grub-bootloader) + (target "/dev/sda") + (keyboard-layout keyboard-layout))) + (swap-devices + (list (uuid "43b938b1-e2dc-4200-a6d4-ce46b639b224"))) + (file-systems + (cons* (file-system + (mount-point "/") + (device + (uuid "64f46c58-64b8-4528-ac2f-e2027139c2c4" + 'ext4)) + (type "ext4")) + %base-file-systems)))