Changeset 1bb47a9 in dotfiles
- Timestamp:
- Feb 9, 2020, 11:41:08 PM (5 years ago)
- Branches:
- master
- Children:
- 26f22c5
- Parents:
- 5938b15
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
guix/config.scm
r5938b15 r1bb47a9 145 145 ;high freq cpu noice) 146 146 "intremap=off" ;Fix for failed to map dmar2 147 "acpi=strict" 148 "splash" 149 "intel_iommu=on" 150 "i915.enable_dc=0" 151 "i915.modeset=1" 152 "i915.enable_psr=0" 153 "i915.enable_fbc=0" 154 "i915.fastboot=1" 155 "intel_agp")) 156 (initrd-modules (append '("i915") 157 %base-initrd-modules)) 147 )) 148 (initrd-modules (append '("i915") %base-initrd-modules)) 158 149 (bootloader (bootloader-configuration 159 150 (bootloader grub-bootloader) 160 151 (target "/dev/sda"))) 161 162 152 (file-systems (cons* (file-system 163 153 (device (file-system-label "root")) … … 165 155 (type "ext4")) 166 156 %base-file-systems)) 167 168 157 (swap-devices `("/dev/sda5")) 169 170 158 (users (cons (user-account 171 159 (name "w96k") … … 176 164 (home-directory "/home/w96k")) 177 165 %base-user-accounts)) 178 179 166 (packages 180 167 (append … … 248 235 %base-packages)) 249 236 250 ;; Use the "desktop" services, which include the X11251 ;; log-in service, networking with NetworkManager, and more.252 253 237 (services %my-services) 254 238 255 239 ;; Allow resolution of '.local' host names with mDNS. 256 240 (name-service-switch %mdns-host-lookup-nss))
Note:
See TracChangeset
for help on using the changeset viewer.