mv kde to module
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
{ lib, config, pkgs, ... }:
|
||||
let
|
||||
inherit (lib) mkIf mkOption types;
|
||||
in
|
||||
{
|
||||
options.smayzy.kde.enable = mkOption {
|
||||
type = types.bool;
|
||||
default = false;
|
||||
description = "kde";
|
||||
};
|
||||
|
||||
config = mkIf config.smayzy.kde.enable {
|
||||
services.desktopManager.plasma6.enable = true;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user