mirror of
https://github.com/sadan4/dotfiles.git
synced 2024-11-16 23:04:39 -05:00
22 lines
337 B
Nix
22 lines
337 B
Nix
|
{ ... }: {
|
||
|
services = {
|
||
|
desktopManager = {
|
||
|
plasma6 = {
|
||
|
enable = true;
|
||
|
};
|
||
|
};
|
||
|
xserver = {
|
||
|
enable = true;
|
||
|
displayManager = {
|
||
|
sddm = {
|
||
|
enable = true;
|
||
|
autoNumlock = true;
|
||
|
wayland = {
|
||
|
enable = false;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|