Changeset 1bb47a9 in dotfiles


Ignore:
Timestamp:
Feb 9, 2020, 11:41:08 PM (5 years ago)
Author:
Mikhail Kirillov <w96k@…>
Branches:
master
Children:
26f22c5
Parents:
5938b15
Message:

Delete unused kernel parameters

File:
1 edited

Legend:

Unmodified
Added
Removed
  • guix/config.scm

    r5938b15 r1bb47a9  
    145145                                        ;high freq cpu noice)
    146146                     "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))
    158149 (bootloader (bootloader-configuration
    159150              (bootloader grub-bootloader)
    160151              (target "/dev/sda")))
    161 
    162152 (file-systems (cons* (file-system
    163153                       (device (file-system-label "root"))
     
    165155                       (type "ext4"))
    166156                      %base-file-systems))
    167 
    168157 (swap-devices `("/dev/sda5"))
    169 
    170158 (users (cons (user-account
    171159               (name "w96k")
     
    176164               (home-directory "/home/w96k"))
    177165              %base-user-accounts))
    178 
    179166 (packages
    180167  (append
     
    248235   %base-packages))
    249236
    250  ;; Use the "desktop" services, which include the X11
    251  ;; log-in service, networking with NetworkManager, and more.
    252 
    253237 (services  %my-services)
    254 
     238 
    255239 ;; Allow resolution of '.local' host names with mDNS.
    256240 (name-service-switch %mdns-host-lookup-nss))
Note: See TracChangeset for help on using the changeset viewer.