Changeset fc6fa17 in dotfiles for guix/config-desktop.scm
- Timestamp:
- Sep 6, 2024, 3:49:57 AM (2 months ago)
- Branches:
- master
- Children:
- 5211578
- Parents:
- fde9de8
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
guix/config-desktop.scm
rfde9de8 rfc6fa17 7 7 (gnu home services shells)) 8 8 9 (use-service-modules guix cups desktop networking ssh xorg docker nix admin vnc lightdm syncthing virtualization databases )9 (use-service-modules guix cups desktop networking ssh xorg docker nix admin vnc lightdm syncthing virtualization databases linux) 10 10 (use-package-modules gnome xdisorg vnc databases) 11 11 … … 34 34 (home-directory "/home/w96k") 35 35 (supplementary-groups '("wheel" "netdev" "audio" "video" "docker"))) 36 (user-account37 (name "wkz")38 (comment "wkz")39 (group "users")40 (home-directory "/home/wkz")41 (supplementary-groups '("wheel" "netdev" "audio" "video" "docker")))42 36 %base-user-accounts)) 43 37 … … 48 42 specification->package 49 43 '( 50 "ratpoison" 51 "xterm" 52 "screen" 44 53 45 )) 54 46 %base-packages)) … … 61 53 (service block-facebook-hosts-service-type) 62 54 55 (service zram-device-service-type 56 (zram-device-configuration 57 (compression-algorithm 'zlib) 58 (priority 100))) 59 63 60 (service tor-service-type) 64 61 (service openssh-service-type) … … 70 67 ;; (memory-size 1024))) 71 68 72 (service nix-service-type (nix-configuration 73 (extra-options '("--extra-experimental-features nix-command")))) 69 ;; (service nix-service-type) 74 70 75 (service xvnc-service-type (xvnc-configuration76 (display-number 10)77 (localhost? #f)78 (geometry "1280x800")))71 ;; (service xvnc-service-type (xvnc-configuration 72 ;; (display-number 10) 73 ;; (localhost? #f) 74 ;; (geometry "1280x800"))) 79 75 80 76 (service syncthing-service-type … … 109 105 (delete usb-modeswitch-service-type) 110 106 (delete geoclue-service-type) 107 ;;(delete elogind-service-type) 108 (delete colord-service-type) 111 109 112 110 113 111 (guix-service-type config => (guix-configuration 114 112 (inherit config) 113 ;; Rely on btrfs compression. 114 (log-compression 'none) 115 115 (extra-options '("--max-jobs=10")) 116 116 (substitute-urls … … 131 131 (delete gdm-service-type)))) 132 132 133 (mapped-devices (list (mapped-device 134 (source (uuid 135 "03db8d78-051b-4a11-a7e5-b62ae0f530d4")) 136 (target "cryptroot") 137 (type luks-device-mapping)))) 138 139 ;; The list of file systems that get "mounted". The unique 140 ;; file system identifiers there ("UUIDs") can be obtained 141 ;; by running 'blkid' in a terminal. 142 (file-systems (cons* (file-system 143 (mount-point "/") 144 (device "/dev/mapper/cryptroot") 145 (type "btrfs") 146 (options "compress=zlib:6,autodefrag") 147 (dependencies mapped-devices)) 148 (file-system 149 (mount-point "/boot/efi") 150 (device (uuid "6ECD-551F" 151 'fat32)) 152 (type "vfat")) %base-file-systems)) 153 133 154 (bootloader (bootloader-configuration 134 155 (bootloader grub-efi-bootloader) 135 156 (targets (list "/boot/efi")) 136 (keyboard-layout keyboard-layout))) 137 (mapped-devices (list (mapped-device 138 (source (uuid 139 "6cfe9eed-8cdd-43da-9b9f-cec6f8ec538b")) 140 (target "cryptroot") 141 (type luks-device-mapping)))) 142 143 (file-systems (cons* (file-system 144 (mount-point "/boot/efi") 145 (device (uuid "17C5-3E35" 146 'fat32)) 147 (type "vfat")) 148 (file-system 149 (mount-point "/") 150 (device "/dev/mapper/cryptroot") 151 (type "ext4") 152 (options "discard") 153 (skip-check-if-clean? #f) 154 (repair #t) 155 (dependencies mapped-devices)) %base-file-systems))) 157 (keyboard-layout keyboard-layout))))
Note:
See TracChangeset
for help on using the changeset viewer.