summaryrefslogtreecommitdiff
path: root/guix/kolwynia/os/ymir/users.scm
diff options
context:
space:
mode:
Diffstat (limited to 'guix/kolwynia/os/ymir/users.scm')
-rw-r--r--guix/kolwynia/os/ymir/users.scm28
1 files changed, 0 insertions, 28 deletions
diff --git a/guix/kolwynia/os/ymir/users.scm b/guix/kolwynia/os/ymir/users.scm
deleted file mode 100644
index a577998..0000000
--- a/guix/kolwynia/os/ymir/users.scm
+++ /dev/null
@@ -1,28 +0,0 @@
-;;; Copyright © 2025 bdunahu <bdunahu@operationnull.com>
-(define-module (kolwynia os ymir users)
- #:use-module (gnu system accounts)
- #:use-module (kolwynia utils)
- #:export (bdunahu-str bdunahu))
-
-;;; Commentary:
-;;;
-;;; provides the bdunahu user configuration
-;;;
-;;; Code:
-
-(define bdunahu-str "bdunahu")
-(define bdunahu
- (user-account
- (name bdunahu-str)
- (comment bdunahu-str)
- (group "users")
- (home-directory (string-append "/home/" bdunahu-str))
- (supplementary-groups
- (cons* "audio"
- "dialout"
- "netdev"
- "video"
- "wheel"
- (garmr?* "kvm")))))
-
-;;; users.scm ends here