Skip to content

Instantly share code, notes, and snippets.

@mtmn
Created May 16, 2023 18:08
Show Gist options
  • Save mtmn/cc30c9e5cd4823170866edf0f24798b3 to your computer and use it in GitHub Desktop.
Save mtmn/cc30c9e5cd4823170866edf0f24798b3 to your computer and use it in GitHub Desktop.
xserver = {
enable = true;
# autorun = false;
videoDrivers = [ "nvidia" ];
layout = "us";
xkbOptions = "eurosign:e";
libinput = {
enable = true;
disableWhileTyping = true;
naturalScrolling = true;
additionalOptions = ''
Option "PalmDetection" "True"
'';
};
desktopManager = {
default = "none";
xterm.enable = false;
};
displayManager = {
lightdm = {
enable = true;
greeter.enable = false;
autoLogin.enable = true;
autoLogin.user = "mudrii";
};
};
windowManager = {
default = "i3";
i3.enable = true;
i3.package = pkgs.i3-gaps;
i3.extraPackages = with pkgs; [
dmenu #application launcher most people use
i3lock #default i3 screen locker
i3status-rust
i3-gaps
i3lock-fancy
rofi
...
...
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment