20 lines
253 B
Nix
20 lines
253 B
Nix
|
{
|
||
|
inputs,
|
||
|
config,
|
||
|
pkgs,
|
||
|
lib,
|
||
|
...
|
||
|
}:
|
||
|
{
|
||
|
networking.hostName = "maidena";
|
||
|
|
||
|
services = {
|
||
|
desktopManager.plasma6.enable = true;
|
||
|
displayManager.sddm = {
|
||
|
enable = true;
|
||
|
wayland.enable = true;
|
||
|
};
|
||
|
};
|
||
|
}
|
||
|
# vim: ts=2 sw=2 et
|