.
This commit is contained in:
parent
8658a82c9f
commit
e288b7fbc6
2 changed files with 21 additions and 3 deletions
|
@ -193,6 +193,9 @@ These services are unmodified, or have just few settings.
|
|||
| libvirt | ((unix-sock-group "libvirt")) |
|
||||
| fstrim | () |
|
||||
| fprintd | () |
|
||||
| udev | () |
|
||||
| seatd | () |
|
||||
| inputattach | () |
|
||||
|
||||
#+NAME: root-simple-service-block
|
||||
#+begin_src scheme :noweb yes :exports none :results output
|
||||
|
@ -231,9 +234,13 @@ These services are unmodified, or have just few settings.
|
|||
#+begin_src scheme :exports none :results code :noweb no-export
|
||||
(modify-services
|
||||
%desktop-services
|
||||
(delete gdm-service-type)
|
||||
(delete screen-locker-service-type)
|
||||
(delete login-service-type)
|
||||
(delete mingetty-service-type)
|
||||
(delete console-font-service-type)
|
||||
(delete elogind-service-type)
|
||||
(delete pulseaudio-service-type)
|
||||
(guix-service-type config => (guix-configuration
|
||||
(inherit config)
|
||||
(substitute-urls
|
||||
|
@ -323,7 +330,7 @@ This is the full operating system specification.
|
|||
(name "zilti")
|
||||
(group "users")
|
||||
(supplementary-groups
|
||||
'("users" "wheel" "netdev" "audio" "video" "libvirt")))
|
||||
'("users" "wheel" "netdev" "audio" "video" "libvirt" "seat")))
|
||||
%base-user-accounts))
|
||||
<<root-package-block>>
|
||||
<<root-services-block>>
|
||||
|
|
15
config.scm
15
config.scm
|
@ -124,7 +124,7 @@
|
|||
(name "zilti")
|
||||
(group "users")
|
||||
(supplementary-groups
|
||||
'("users" "wheel" "netdev" "audio" "video" "libvirt")))
|
||||
'("users" "wheel" "netdev" "audio" "video" "libvirt" "seat")))
|
||||
%base-user-accounts))
|
||||
(packages
|
||||
(append
|
||||
|
@ -142,9 +142,13 @@
|
|||
(append
|
||||
(modify-services
|
||||
%desktop-services
|
||||
(delete gdm-service-type)
|
||||
(delete screen-locker-service-type)
|
||||
(delete login-service-type)
|
||||
(delete mingetty-service-type)
|
||||
(delete console-font-service-type)
|
||||
(delete elogind-service-type)
|
||||
(delete pulseaudio-service-type)
|
||||
(guix-service-type config => (guix-configuration
|
||||
(inherit config)
|
||||
(substitute-urls
|
||||
|
@ -181,7 +185,14 @@
|
|||
(fstrim-configuration))
|
||||
(service
|
||||
fprintd-service-type
|
||||
(fprintd-configuration)))
|
||||
(fprintd-configuration))
|
||||
(service udev-service-type (udev-configuration))
|
||||
(service
|
||||
seatd-service-type
|
||||
(seatd-configuration))
|
||||
(service
|
||||
inputattach-service-type
|
||||
(inputattach-configuration)))
|
||||
|
||||
(list polkit-wheel-service)
|
||||
(list
|
||||
|
|
Loading…
Reference in a new issue