21 lines
336 B
Nix
21 lines
336 B
Nix
|
{
|
||
|
boot.loader = {
|
||
|
efi = {
|
||
|
canTouchEfiVariables = true;
|
||
|
efiSysMountPoint = "/boot/efi";
|
||
|
};
|
||
|
grub = {
|
||
|
efiSupport = true;
|
||
|
device = "nodev";
|
||
|
};
|
||
|
};
|
||
|
|
||
|
services = {
|
||
|
desktopManager.plasma6.enable = true;
|
||
|
displayManager.sddm = {
|
||
|
enable = true;
|
||
|
wayland.enable = true;
|
||
|
};
|
||
|
};
|
||
|
}
|