From 36b8e8d5841578bb06a8df27662aff92622f23dc Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Tue, 22 Aug 2023 17:46:43 -0600 Subject: [PATCH] [NixOS] Remove autorandr startup after dm --- nixos/desktop.nix | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/nixos/desktop.nix b/nixos/desktop.nix index 5309614c..ffee1a66 100644 --- a/nixos/desktop.nix +++ b/nixos/desktop.nix @@ -29,17 +29,6 @@ makeEnable config "modules.desktop" true { enable = true; }; - systemd.services.autorandr-startup-after-dm = { - wantedBy = [ "display-manager.service" ]; - after = [ "display-manager.service" ]; - description = "autorandr after display manager"; - - serviceConfig = { - Type = "oneshot"; - ExecStart = "${pkgs.autorandr}/bin/autorandr --change"; - }; - }; - # This is for the benefit of VSCODE running natively in wayland environment.sessionVariables.NIXOS_OZONE_WL = "1";