From f4c2d06c3d252457c66907f37314da35fb0ebda7 Mon Sep 17 00:00:00 2001 From: ChUrl Date: Sat, 15 Oct 2022 19:16:43 +0200 Subject: [PATCH] initial (blank) plasma module --- home/modules/plasma.nix | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 home/modules/plasma.nix diff --git a/home/modules/plasma.nix b/home/modules/plasma.nix new file mode 100644 index 00000000..b17cf7b8 --- /dev/null +++ b/home/modules/plasma.nix @@ -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; [ ]; + + }; +}