diff options
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | desktop.scm (renamed from config.scm) | 13 |
2 files changed, 12 insertions, 3 deletions
@@ -6,5 +6,5 @@ Probably going to obsolete my dotfiles Reconfigure the system with this command: ``` -sudo -E guix system reconfigure config.scm +sudo -E guix system reconfigure $CONFIGURATION_FILE_YOU_WANT ``` @@ -11,6 +11,7 @@ (gnu packages wget) (gnu packages xdisorg) (gnu packages xorg) + (gnu packages video) (tuxedo-keyboard) (nongnu packages linux) (nongnu system linux-initrd)) @@ -72,7 +73,7 @@ (group "users") (home-directory "/home/Ekaitz") (supplementary-groups - '("wheel" "netdev" "audio" "video" "lp" "dialout"))) + '("wheel" "netdev" "audio" "video" "lp" "dialout" "kvm"))) %base-user-accounts)) (packages (cons* @@ -85,7 +86,7 @@ wget tcpdump openssh - xf86-video-intel + intel-vaapi-driver xf86-input-wacom %base-packages)) @@ -109,6 +110,14 @@ " Option \"TappingDrag\" \"on\"\n" " Option \"DisableWhileTyping\" \"on\"\n" "EndSection\n" + "\n" + "\n" + "Section \"Device\"" + " Identifier \"modesetting\"" + " Driver \"modesetting\"" + " Option \"TearFree\" \"true\"" + "EndSection" + "\n" )))) ; Removes ModemManager because it interferes with USB ; development. If using a 3/4G modem or something we have |