diff options
-rw-r--r-- | home/nipsy/arrakis.nix | 18 | ||||
-rw-r--r-- | hosts/arrakis/default.nix | 7 |
2 files changed, 9 insertions, 16 deletions
diff --git a/home/nipsy/arrakis.nix b/home/nipsy/arrakis.nix index 382f4d9..1504ecb 100644 --- a/home/nipsy/arrakis.nix +++ b/home/nipsy/arrakis.nix @@ -2,8 +2,8 @@ { imports = [ common/core - common/optional/desktops - common/optional/desktops/services/xscreensaver.nix + #common/optional/desktops + #common/optional/desktops/services/xscreensaver.nix #inputs.sops-nix.homeManagerModules.sops ]; @@ -47,12 +47,12 @@ }; }; - xsession = { - initExtra = '' - xrandr --output DisplayPort-0 --primary --mode 2560x1440 --rate 165 + #xsession = { + # initExtra = '' + # xrandr --output DisplayPort-0 --primary --mode 2560x1440 --rate 165 - # disable VRR because it causes the display to go to sleep on my GeForce 1080 (now 3070 Ti) sometimes; maybe monitor related? - #nvidia-settings -a AllowVRR=0 - ''; - }; + # # disable VRR because it causes the display to go to sleep on my GeForce 1080 (now 3070 Ti) sometimes; maybe monitor related? + # #nvidia-settings -a AllowVRR=0 + # ''; + #}; } diff --git a/hosts/arrakis/default.nix b/hosts/arrakis/default.nix index fd45893..bdac99f 100644 --- a/hosts/arrakis/default.nix +++ b/hosts/arrakis/default.nix @@ -6,10 +6,6 @@ "net.ipv4.conf.all.proxy_arp" = 1; }; kernelPackages = pkgs.master.linuxPackages_6_14; - kernelParams = [ - "amdgpu.ppfeaturemask=0xfffd3fff" - "split_lock_detect=off" - ]; loader = { efi = { canTouchEfiVariables = true; @@ -239,9 +235,6 @@ ]; }; - services.openssh.settings.X11Forwarding = true; - services.xserver.videoDrivers = [ "nvidia" ]; - sops = { age.sshKeyPaths = [ "/etc/ssh/ssh_host_ed25519_key" ]; defaultSopsFile = ../secrets/arrakis.yaml; |