mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 00:43:56 -05:00
23 lines
441 B
Nix
Executable file
23 lines
441 B
Nix
Executable file
{
|
|
enable = true;
|
|
videoDrivers = ["nvidia" "modesetting"];
|
|
layout = "us";
|
|
libinput.enable = true;
|
|
desktopManager = {
|
|
xterm.enable = false;
|
|
};
|
|
windowManager.bspwm = {
|
|
enable = true;
|
|
};
|
|
displayManager = {
|
|
defaultSession = "none+bspwm";
|
|
lightdm = {
|
|
enable = true;
|
|
greeters.mini = {
|
|
enable = true;
|
|
extraConfig = (builtins.readFile ./lightdm-mini.conf);
|
|
};
|
|
};
|
|
};
|
|
}
|
|
|