start on quickshell

This commit is contained in:
2025-10-16 17:11:21 -05:00
parent 7f224bd6fc
commit 86272d668d
2 changed files with 17 additions and 4 deletions

View File

@@ -0,0 +1,14 @@
{ config, lib, ... }: {
options.homeconfig.quickshell.enable = with lib; mkOption {
type = with types; bool;
default = false;
};
config = lib.mkIf config.homeconfig.quickshell.enable {
programs.quickshell = {
enable = true;
};
};
}