first attempt at changing the layout and using greetd
This commit is contained in:
parent
563b9dba23
commit
0c50d6ccd1
4 changed files with 97 additions and 6 deletions
|
@ -0,0 +1,25 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
with lib;
|
||||
with lib.wyrdgard;
|
||||
let
|
||||
cfg = config.wyrdgard.graphical-interface.desktop-manager.kde;
|
||||
in
|
||||
{
|
||||
options.wyrdgard.graphical-interface.desktop-manager.kde = with types; {
|
||||
enable = mkEnableOption "Whether to enable a kde plasma6";
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
environment.systemPackages = with pkgs; [ xdg-utils ];
|
||||
|
||||
services = {
|
||||
xserver = enabled;
|
||||
desktopManager.plasma6 = enabled;
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue