first attempt at changing the layout and using greetd

This commit is contained in:
Christoph Hollizeck 2024-06-04 22:49:53 +02:00
parent 563b9dba23
commit 0c50d6ccd1
No known key found for this signature in database
4 changed files with 97 additions and 6 deletions

View file

@ -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;
};
};
}