This commit is contained in:
Daniel Ziltener 2024-01-26 17:05:49 +01:00
parent 5a730e1c6f
commit 3230bce690
Signed by: zilti
GPG Key ID: B38976E82C9DAE42
4 changed files with 52 additions and 33 deletions

View File

@ -197,6 +197,8 @@ This adds the Nonguix channel.
<<greeter-service>>)
(list
<<screen-lock-service>>)
(list
<<hosts-file-service>>)
(list
<<unattended-upgrade>>)
))
@ -208,7 +210,7 @@ These services are unmodified, or have just few settings.
#+NAME: root-simple-services
| Service | Options |
|--------------------+------------------------------------------------------|
|-------------+------------------------------------------------------|
| tlp | () |
| thermald | ((adaptive? #t)) |
| bluetooth | () |
@ -236,6 +238,16 @@ These services are unmodified, or have just few settings.
<<root-channels>>)))
#+end_src
*** Hosts File
#+NAME: hosts-file-service
#+begin_src scheme :noweb no-export
(simple-service 'add-extra-hosts
hosts-service-type
(list (host "127.0.0.1" "l.redsky.io" '("ld.redsky.io"))
(host "::1" "l.redsky.io" '("ld.redsky.io"))))
#+end_src
*** Modified Desktop Services
#+NAME: nonguix-pubkey

View File

@ -15,9 +15,9 @@
(gnu services virtualization)
(gnu services xorg)
(gnu system nss)
(zilti packages hyprland)
(nongnu packages linux)
(nongnu system linux-initrd)
(zilti packages hyprland))
(nongnu system linux-initrd))
(use-service-modules desktop xorg)
@ -180,6 +180,11 @@
(program
(file-append swaylock-effects "/bin/swaylock"))
(using-setuid? #f))))
(list
(simple-service 'add-extra-hosts
hosts-service-type
(list (host "127.0.0.1" "l.redsky.io" '("ld.redsky.io"))
(host "::1" "l.redsky.io" '("ld.redsky.io")))))
(list
(service unattended-upgrade-service-type
(unattended-upgrade-configuration

View File

@ -670,7 +670,9 @@ Point must be at the beginning of balanced expression (sexp)."
"clojure-lsp"
:initializationOptions
(:preferences
(:includeInlayParameterNameHints
(:inlayHintProvider
t
:includeInlayParameterNameHints
"all"
:includeInlayParameterNameHintsWhenArgumentMatchesName
t