From 1c0e3701fbd7ae399d7ac158f1aa8a5135714e11 Mon Sep 17 00:00:00 2001 From: Gabriel Simmer Date: Tue, 7 Sep 2021 22:49:01 +0100 Subject: [PATCH] Correcting filesystems. --- .config/guix/systems/base-system.scm | 4 ++-- base.org | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.config/guix/systems/base-system.scm b/.config/guix/systems/base-system.scm index e030add..2563b6a 100644 --- a/.config/guix/systems/base-system.scm +++ b/.config/guix/systems/base-system.scm @@ -80,14 +80,14 @@ EndSection (file-system (device "/dev/sda2") (mount-point "/") - (type "ext4")))) + (type "ext4")) %base-file-systems))))) (users (cons (user-account (name "gsimmer") (comment "Gabriel Simmer") (password (crypt "pass" "$6$abc")) (group "users") - (supplementary-groups ("wheel" "netdev" + (supplementary-groups '("wheel" "netdev" "audio" "video" "docker" "kvm" "tty" "input" diff --git a/base.org b/base.org index ca0763d..4b099ec 100644 --- a/base.org +++ b/base.org @@ -123,14 +123,14 @@ in a typing install of Guix/Linux. (file-system (device "/dev/sda2") (mount-point "/") - (type "ext4")))) + (type "ext4")) %base-file-systems))))) (users (cons (user-account (name "gsimmer") (comment "Gabriel Simmer") (password (crypt "pass" "$6$abc")) (group "users") - (supplementary-groups ("wheel" "netdev" + (supplementary-groups '("wheel" "netdev" "audio" "video" "docker" "kvm" "tty" "input"