Skip to content

Instantly share code, notes, and snippets.

@joepie91

joepie91/.nix Secret

Created October 20, 2017 15:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joepie91/15b888afb4d140316c1dd8c6b6d203a6 to your computer and use it in GitHub Desktop.
Save joepie91/15b888afb4d140316c1dd8c6b6d203a6 to your computer and use it in GitHub Desktop.
services.xserver = {
xrandrHeads = [
"DFP6"
"CRT1"
];
# The below is a workaround, because SDDM inexplicably results in a masked display-manager.service on this system.
displayManager = {
lightdm = {
enable = true;
};
sddm = {
enable = pkgs.stdenv.lib.mkForce false;
};
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment