add Emma and Claire
This commit is contained in:
parent
025699a352
commit
9e1c43e17e
1 changed files with 13 additions and 3 deletions
16
system.scm
16
system.scm
|
|
@ -37,14 +37,24 @@
|
|||
(group "users")
|
||||
(home-directory "/home/kate")
|
||||
(supplementary-groups '("wheel" "netdev" "audio" "video")))
|
||||
(user-account
|
||||
(name "emma")
|
||||
(comment "Emma")
|
||||
(group "users")
|
||||
(home-directory "/home/emma")
|
||||
(supplementary-groups '("wheel" "netdev" "audio" "video")))
|
||||
(user-account
|
||||
(name "claire")
|
||||
(comment "Claire")
|
||||
(group "users")
|
||||
(home-directory "/home/claire")
|
||||
(supplementary-groups '("wheel" "netdev" "audio" "video")))
|
||||
%base-user-accounts))
|
||||
|
||||
;; Packages installed system-wide. Users can also install packages
|
||||
;; under their own account: use 'guix search KEYWORD' to search
|
||||
;; for packages and 'guix install PACKAGE' to install a package.
|
||||
(packages (append (list (specification->package "i3-wm")
|
||||
(specification->package "i3status")
|
||||
(specification->package "dmenu")
|
||||
(packages (append (list (specification->package "dmenu")
|
||||
(specification->package "st")
|
||||
(specification->package "firefox")
|
||||
(specification->package "libreoffice")
|
||||
|
|
|
|||
Reference in a new issue