.
This commit is contained in:
parent
6a83af0d25
commit
f6903fe1fa
2 changed files with 23 additions and 19 deletions
28
config.org
28
config.org
|
@ -43,8 +43,10 @@ This is to be run after setting up the partitions.
|
||||||
- gnu
|
- gnu
|
||||||
- gnu image
|
- gnu image
|
||||||
- gnu packages gnome
|
- gnu packages gnome
|
||||||
|
- gnu services admin
|
||||||
- gnu services authentication
|
- gnu services authentication
|
||||||
- gnu services base
|
- gnu services base
|
||||||
|
- gnu services configuration
|
||||||
- gnu services dbus
|
- gnu services dbus
|
||||||
- gnu services desktop
|
- gnu services desktop
|
||||||
- gnu services linux
|
- gnu services linux
|
||||||
|
@ -166,12 +168,13 @@ This adds the Nonguix channel.
|
||||||
(append
|
(append
|
||||||
<<root-modified-desktop-services>>
|
<<root-modified-desktop-services>>
|
||||||
<<root-simple-service-block>>
|
<<root-simple-service-block>>
|
||||||
|
(list polkit-wheel-service)
|
||||||
(list
|
(list
|
||||||
<<greeter-service>>)
|
<<greeter-service>>)
|
||||||
(list
|
(list
|
||||||
<<screen-lock-service>>)
|
<<screen-lock-service>>)
|
||||||
(list
|
(list
|
||||||
<<unattended-upgrade>>))
|
<<unattended-upgrade>>)
|
||||||
))
|
))
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
|
@ -180,17 +183,16 @@ This adds the Nonguix channel.
|
||||||
These services are unmodified, or have just few settings.
|
These services are unmodified, or have just few settings.
|
||||||
|
|
||||||
#+NAME: root-simple-services
|
#+NAME: root-simple-services
|
||||||
| Service | Options |
|
| Service | Options |
|
||||||
|--------------------+------------------------------------------------------|
|
|-------------+------------------------------------------------------|
|
||||||
| tlp | () |
|
| tlp | () |
|
||||||
| thermald | ((adaptive? #t)) |
|
| thermald | ((adaptive? #t)) |
|
||||||
| bluetooth | () |
|
| bluetooth | () |
|
||||||
| earlyoom | ((minimum-available-memory 5) (minimum-free-swap 5)) |
|
| earlyoom | ((minimum-available-memory 5) (minimum-free-swap 5)) |
|
||||||
| inputattach | () |
|
| inputattach | () |
|
||||||
| libvirt | ((unix-sock-group "libvirt")) |
|
| libvirt | ((unix-sock-group "libvirt")) |
|
||||||
| fstrim | () |
|
| fstrim | () |
|
||||||
| fprintd | () |
|
| fprintd | () |
|
||||||
| polkit | ((polkit-wheel-service)) |
|
|
||||||
|
|
||||||
#+NAME: root-simple-service-block
|
#+NAME: root-simple-service-block
|
||||||
#+begin_src scheme :noweb yes :exports none :results output
|
#+begin_src scheme :noweb yes :exports none :results output
|
||||||
|
@ -204,7 +206,7 @@ These services are unmodified, or have just few settings.
|
||||||
(service unattended-upgrade-service-type
|
(service unattended-upgrade-service-type
|
||||||
(unattended-upgrade-configuration
|
(unattended-upgrade-configuration
|
||||||
(schedule "5 12 * * 1")
|
(schedule "5 12 * * 1")
|
||||||
(channels
|
#;(channels
|
||||||
<<root-channels>>)))
|
<<root-channels>>)))
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
|
|
14
config.scm
14
config.scm
|
@ -4,8 +4,10 @@
|
||||||
;; - gnu
|
;; - gnu
|
||||||
;; - gnu image
|
;; - gnu image
|
||||||
;; - gnu packages gnome
|
;; - gnu packages gnome
|
||||||
|
;; - gnu services admin
|
||||||
;; - gnu services authentication
|
;; - gnu services authentication
|
||||||
;; - gnu services base
|
;; - gnu services base
|
||||||
|
;; - gnu services configuration
|
||||||
;; - gnu services dbus
|
;; - gnu services dbus
|
||||||
;; - gnu services desktop
|
;; - gnu services desktop
|
||||||
;; - gnu services linux
|
;; - gnu services linux
|
||||||
|
@ -23,8 +25,10 @@
|
||||||
(gnu)
|
(gnu)
|
||||||
(gnu image)
|
(gnu image)
|
||||||
(gnu packages gnome)
|
(gnu packages gnome)
|
||||||
|
(gnu services admin)
|
||||||
(gnu services authentication)
|
(gnu services authentication)
|
||||||
(gnu services base)
|
(gnu services base)
|
||||||
|
(gnu services configuration)
|
||||||
(gnu services dbus)
|
(gnu services dbus)
|
||||||
(gnu services desktop)
|
(gnu services desktop)
|
||||||
(gnu services linux)
|
(gnu services linux)
|
||||||
|
@ -173,11 +177,9 @@
|
||||||
(fstrim-configuration))
|
(fstrim-configuration))
|
||||||
(service
|
(service
|
||||||
fprintd-service-type
|
fprintd-service-type
|
||||||
(fprintd-configuration))
|
(fprintd-configuration)))
|
||||||
#;(service
|
|
||||||
polkit-service-type
|
|
||||||
(polkit-configuration (polkit-wheel-service))))
|
|
||||||
|
|
||||||
|
(list polkit-wheel-service)
|
||||||
(list
|
(list
|
||||||
(service greetd-service-type
|
(service greetd-service-type
|
||||||
(greetd-configuration
|
(greetd-configuration
|
||||||
|
@ -213,7 +215,7 @@
|
||||||
(service unattended-upgrade-service-type
|
(service unattended-upgrade-service-type
|
||||||
(unattended-upgrade-configuration
|
(unattended-upgrade-configuration
|
||||||
(schedule "5 12 * * 1")
|
(schedule "5 12 * * 1")
|
||||||
(channels
|
#;(channels
|
||||||
(cons* (channel
|
(cons* (channel
|
||||||
(name 'nonguix)
|
(name 'nonguix)
|
||||||
(url "https://gitlab.com/nonguix/nonguix")
|
(url "https://gitlab.com/nonguix/nonguix")
|
||||||
|
@ -226,7 +228,7 @@
|
||||||
(channel
|
(channel
|
||||||
(name 'ziltis-channel)
|
(name 'ziltis-channel)
|
||||||
(url "https://gitea.lyrion.ch/zilti/guixchannel"))
|
(url "https://gitea.lyrion.ch/zilti/guixchannel"))
|
||||||
%default-channels))))))
|
%default-channels)))))
|
||||||
))
|
))
|
||||||
(name-service-switch %mdns-host-lookup-nss))
|
(name-service-switch %mdns-host-lookup-nss))
|
||||||
;; Operating System:1 ends here
|
;; Operating System:1 ends here
|
||||||
|
|
Loading…
Reference in a new issue