.
This commit is contained in:
parent
5a730e1c6f
commit
3230bce690
4 changed files with 52 additions and 33 deletions
16
channels.scm
16
channels.scm
|
@ -7,14 +7,14 @@
|
||||||
"897c1a470da759236cc11798f4e0a5f7d4d59fbc"
|
"897c1a470da759236cc11798f4e0a5f7d4d59fbc"
|
||||||
(openpgp-fingerprint
|
(openpgp-fingerprint
|
||||||
"2A39 3FFF 68F4 EF7A 3D29 12AF 6F51 20A0 22FB B2D5"))))
|
"2A39 3FFF 68F4 EF7A 3D29 12AF 6F51 20A0 22FB B2D5"))))
|
||||||
(channel
|
(channel
|
||||||
(name 'emacs-melpa)
|
(name 'emacs-melpa)
|
||||||
(url "https://github.com/babariviere/guix-emacs")
|
(url "https://github.com/babariviere/guix-emacs")
|
||||||
(introduction
|
(introduction
|
||||||
(make-channel-introduction
|
(make-channel-introduction
|
||||||
"72ca4ef5b572fea10a4589c37264fa35d4564783"
|
"72ca4ef5b572fea10a4589c37264fa35d4564783"
|
||||||
(openpgp-fingerprint
|
(openpgp-fingerprint
|
||||||
"261C A284 3452 FB01 F6DF 6CF4 F9B7 864F 2AB4 6F18"))))
|
"261C A284 3452 FB01 F6DF 6CF4 F9B7 864F 2AB4 6F18"))))
|
||||||
(channel
|
(channel
|
||||||
(name 'ziltis-channel)
|
(name 'ziltis-channel)
|
||||||
(url "https://gitea.lyrion.ch/zilti/guixchannel"))
|
(url "https://gitea.lyrion.ch/zilti/guixchannel"))
|
||||||
|
|
38
config.org
38
config.org
|
@ -197,9 +197,11 @@ This adds the Nonguix channel.
|
||||||
<<greeter-service>>)
|
<<greeter-service>>)
|
||||||
(list
|
(list
|
||||||
<<screen-lock-service>>)
|
<<screen-lock-service>>)
|
||||||
|
(list
|
||||||
|
<<hosts-file-service>>)
|
||||||
(list
|
(list
|
||||||
<<unattended-upgrade>>)
|
<<unattended-upgrade>>)
|
||||||
))
|
))
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
*** Simple Services
|
*** Simple Services
|
||||||
|
@ -207,18 +209,18 @@ 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 | () |
|
||||||
| docker | () |
|
| docker | () |
|
||||||
| 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 | () |
|
||||||
| seatd | () |
|
| seatd | () |
|
||||||
|
|
||||||
#+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
|
||||||
|
@ -236,6 +238,16 @@ These services are unmodified, or have just few settings.
|
||||||
<<root-channels>>)))
|
<<root-channels>>)))
|
||||||
#+end_src
|
#+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
|
*** Modified Desktop Services
|
||||||
|
|
||||||
#+NAME: nonguix-pubkey
|
#+NAME: nonguix-pubkey
|
||||||
|
|
27
config.scm
27
config.scm
|
@ -15,9 +15,9 @@
|
||||||
(gnu services virtualization)
|
(gnu services virtualization)
|
||||||
(gnu services xorg)
|
(gnu services xorg)
|
||||||
(gnu system nss)
|
(gnu system nss)
|
||||||
|
(zilti packages hyprland)
|
||||||
(nongnu packages linux)
|
(nongnu packages linux)
|
||||||
(nongnu system linux-initrd)
|
(nongnu system linux-initrd))
|
||||||
(zilti packages hyprland))
|
|
||||||
|
|
||||||
(use-service-modules desktop xorg)
|
(use-service-modules desktop xorg)
|
||||||
|
|
||||||
|
@ -180,6 +180,11 @@
|
||||||
(program
|
(program
|
||||||
(file-append swaylock-effects "/bin/swaylock"))
|
(file-append swaylock-effects "/bin/swaylock"))
|
||||||
(using-setuid? #f))))
|
(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
|
(list
|
||||||
(service unattended-upgrade-service-type
|
(service unattended-upgrade-service-type
|
||||||
(unattended-upgrade-configuration
|
(unattended-upgrade-configuration
|
||||||
|
@ -194,17 +199,17 @@
|
||||||
"897c1a470da759236cc11798f4e0a5f7d4d59fbc"
|
"897c1a470da759236cc11798f4e0a5f7d4d59fbc"
|
||||||
(openpgp-fingerprint
|
(openpgp-fingerprint
|
||||||
"2A39 3FFF 68F4 EF7A 3D29 12AF 6F51 20A0 22FB B2D5"))))
|
"2A39 3FFF 68F4 EF7A 3D29 12AF 6F51 20A0 22FB B2D5"))))
|
||||||
(channel
|
(channel
|
||||||
(name 'emacs-melpa)
|
(name 'emacs-melpa)
|
||||||
(url "https://github.com/babariviere/guix-emacs")
|
(url "https://github.com/babariviere/guix-emacs")
|
||||||
(introduction
|
(introduction
|
||||||
(make-channel-introduction
|
(make-channel-introduction
|
||||||
"72ca4ef5b572fea10a4589c37264fa35d4564783"
|
"72ca4ef5b572fea10a4589c37264fa35d4564783"
|
||||||
(openpgp-fingerprint
|
(openpgp-fingerprint
|
||||||
"261C A284 3452 FB01 F6DF 6CF4 F9B7 864F 2AB4 6F18"))))
|
"261C A284 3452 FB01 F6DF 6CF4 F9B7 864F 2AB4 6F18"))))
|
||||||
(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))
|
||||||
|
|
|
@ -670,7 +670,9 @@ Point must be at the beginning of balanced expression (sexp)."
|
||||||
"clojure-lsp"
|
"clojure-lsp"
|
||||||
:initializationOptions
|
:initializationOptions
|
||||||
(:preferences
|
(:preferences
|
||||||
(:includeInlayParameterNameHints
|
(:inlayHintProvider
|
||||||
|
t
|
||||||
|
:includeInlayParameterNameHints
|
||||||
"all"
|
"all"
|
||||||
:includeInlayParameterNameHintsWhenArgumentMatchesName
|
:includeInlayParameterNameHintsWhenArgumentMatchesName
|
||||||
t
|
t
|
||||||
|
|
Loading…
Reference in a new issue