.
This commit is contained in:
parent
3b24d44a5e
commit
283e9fbf95
2 changed files with 40 additions and 35 deletions
70
config.scm
70
config.scm
|
@ -206,39 +206,43 @@
|
||||||
hosts-service-type
|
hosts-service-type
|
||||||
(list (host "127.0.0.1" "l.redsky.io" '("ld.redsky.io"))
|
(list (host "127.0.0.1" "l.redsky.io" '("ld.redsky.io"))
|
||||||
(host "::1" "l.redsky.io" '("ld.redsky.io")))))
|
(host "::1" "l.redsky.io" '("ld.redsky.io")))))
|
||||||
|
(list
|
||||||
|
(service pam-limits-service-type
|
||||||
|
(list
|
||||||
|
(pam-limits-entry "*" 'both 'nofile 524288))))
|
||||||
(list
|
(list
|
||||||
(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")
|
||||||
;; Enable signature verification:
|
;; Enable signature verification:
|
||||||
(introduction
|
(introduction
|
||||||
(make-channel-introduction
|
(make-channel-introduction
|
||||||
"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)
|
(name 'emacs)
|
||||||
(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 'rosenthal)
|
(name 'rosenthal)
|
||||||
(url "https://codeberg.org/hako/rosenthal.git")
|
(url "https://codeberg.org/hako/rosenthal.git")
|
||||||
(branch "trunk")
|
(branch "trunk")
|
||||||
(introduction
|
(introduction
|
||||||
(make-channel-introduction
|
(make-channel-introduction
|
||||||
"7677db76330121a901604dfbad19077893865f35"
|
"7677db76330121a901604dfbad19077893865f35"
|
||||||
(openpgp-fingerprint
|
(openpgp-fingerprint
|
||||||
"13E7 6CD6 E649 C28C 3385 4DF5 5E5A A665 6149 17F7"))))
|
"13E7 6CD6 E649 C28C 3385 4DF5 5E5A A665 6149 17F7"))))
|
||||||
(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))
|
||||||
|
|
|
@ -31,7 +31,8 @@
|
||||||
(home-environment
|
(home-environment
|
||||||
;; Below is the list of Home services. To search for available
|
;; Below is the list of Home services. To search for available
|
||||||
;; services, run 'guix home search KEYWORD' in a terminal.
|
;; services, run 'guix home search KEYWORD' in a terminal.
|
||||||
(services
|
(
|
||||||
|
services
|
||||||
(list
|
(list
|
||||||
(service home-shepherd-service-type)
|
(service home-shepherd-service-type)
|
||||||
(service home-msmtp-service-type
|
(service home-msmtp-service-type
|
||||||
|
@ -120,7 +121,7 @@
|
||||||
"eudev"
|
"eudev"
|
||||||
"diff-so-fancy"
|
"diff-so-fancy"
|
||||||
"firefox"
|
"firefox"
|
||||||
"flatpak"
|
"flatpak@1.14.6"
|
||||||
"font-libertinus"
|
"font-libertinus"
|
||||||
"font-nerdfont-monaspice"
|
"font-nerdfont-monaspice"
|
||||||
"font-nerdfont-iosevka-term-slab"
|
"font-nerdfont-iosevka-term-slab"
|
||||||
|
|
Loading…
Reference in a new issue