1

initial (blank) plasma module

This commit is contained in:
2022-10-15 19:16:43 +02:00
parent 4408a88abe
commit f4c2d06c3d

21
home/modules/plasma.nix Normal file
View File

@ -0,0 +1,21 @@
# TODO: KDE Connect config
# TODO: Plasma Configuration (https://github.com/pjones/plasma-manager)
{ config, lib, mylib, pkgs, ... }:
with lib;
with mylib.modules;
let
cfg = config.modules.plasma;
in {
options.modules.plasma = {
};
config = mkIf cfg.enable {
home.packages = with pkgs; [ ];
};
}