blob: a577998d98bde7bec5dd99203d628defbebd7fb0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
;;; 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
|