bye plasma

This commit is contained in:
Noa Aarts 2025-06-13 21:33:20 +02:00
parent 6fd063c744
commit 2e6a7e599d
Signed by: noa
GPG key ID: 1850932741EFF672
3 changed files with 0 additions and 32 deletions

View file

@ -1,24 +0,0 @@
{
config,
lib,
pkgs,
inputs,
...
}:
let
cfg = config.modules.plasma;
in
{
options.modules.plasma = {
enable = lib.mkEnableOption "enable kde plasma 6";
};
config = lib.mkIf cfg.enable {
services = {
desktopManager.plasma6.enable = true;
displayManager.defaultSession = "niri";
};
xdg.portal.config.common.default = "*";
};
}