Changeset 14df2de in dotfiles
- Timestamp:
- Oct 3, 2022, 9:12:24 PM (2 years ago)
- Branches:
- master
- Children:
- 451fd67
- Parents:
- cfa5680
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
guix/config.scm
rcfa5680 r14df2de 115 115 (operating-system 116 116 (locale "ru_RU.utf8") 117 (timezone "Europe/ Moscow")117 (timezone "Europe/Tbilisi") 118 118 (keyboard-layout 119 119 (keyboard-layout … … 213 213 (cons* 214 214 (service docker-service-type) 215 (service virtlog-service-type) 215 216 (service libvirt-service-type 216 (libvirt-configuration 217 (unix-sock-group "libvirt") 218 (tls-port "16555"))) 217 (libvirt-configuration (unix-sock-group "libvirt"))) 219 218 (service openssh-service-type) 220 219 (service tor-service-type) … … 292 291 ;; (keyboard-layout keyboard-layout))) 293 292 293 (service hurd-vm-service-type 294 (hurd-vm-configuration 295 (disk-size (* 8 (expt 2 30))) ;12GiB 296 (memory-size 1024))) 297 294 298 (service slim-service-type 295 299 (slim-configuration … … 302 306 (modify-services %desktop-services 303 307 (delete gdm-service-type) 304 (network-manager-service-type config => 305 (network-manager-configuration 306 (inherit config) 307 (vpn-plugins (list network-manager-openvpn)))) 308 (guix-service-type 309 config => 310 (guix-configuration 311 (inherit config) 312 (substitute-urls 313 (list "http://ci.guix.trop.in" 314 ;; "https://4zwzi66wwdaalbhgnix55ea3ab4pvvw66ll2ow53kjub6se4q2bclcyd.onion" 315 "https://bordeaux.guix.gnu.org" 316 "https://substitutes.nonguix.org")) 317 (authorized-keys 318 (append (list 319 (plain-file "non-guix.pub" 320 "(public-key 321 (ecc 322 (curve Ed25519) 323 (q #C1FD53E5D4CE971933EC50C9F307AE2171A2D3B52C804642A7A35F84F3A4EA98#) 324 ) 325 )") 326 (plain-file "yunohost.pub" 327 "(public-key 328 (ecc 329 (curve Ed25519) 330 (q #32F6DB936016E836C4A888F217C430C0F40A051864F59A47FC218F991233750D#) 331 ) 332 )")) 333 %default-authorized-guix-keys)) 334 ;; (http-proxy "http://localhost:9250") 335 ))))) 308 ;; (network-manager-service-type config => 309 ;; (network-manager-configuration 310 ;; (inherit config) 311 ;; (vpn-plugins (list network-manager-openvpn)))) 312 ;; (guix-service-type 313 ;; config => 314 ;; (guix-configuration 315 ;; (inherit config) 316 ;; (substitute-urls 317 ;; (list "http://ci.guix.trop.in" 318 ;; ;; "https://4zwzi66wwdaalbhgnix55ea3ab4pvvw66ll2ow53kjub6se4q2bclcyd.onion" 319 ;; "https://bordeaux.guix.gnu.org" 320 ;; "https://substitutes.nonguix.org")) 321 ;; (authorized-keys 322 ;; (append (list 323 ;; (plain-file "non-guix.pub" 324 ;; "(public-key 325 ;; (ecc 326 ;; (curve Ed25519) 327 ;; (q #C1FD53E5D4CE971933EC50C9F307AE2171A2D3B52C804642A7A35F84F3A4EA98#) 328 ;; ) 329 ;; )") 330 ;; (plain-file "yunohost.pub" 331 ;; "(public-key 332 ;; (ecc 333 ;; (curve Ed25519) 334 ;; (q #32F6DB936016E836C4A888F217C430C0F40A051864F59A47FC218F991233750D#) 335 ;; ) 336 ;; )")) 337 ;; %default-authorized-guix-keys)) 338 ;; ;; (http-proxy "http://localhost:9250") 339 ;; )) 340 ))) 336 341 337 342 (bootloader
Note:
See TracChangeset
for help on using the changeset viewer.