no option

This commit is contained in:
2025-10-16 17:16:20 -05:00
parent d036eb2512
commit b0c84b9b27

View File

@@ -1,4 +1,4 @@
{ config, lib, ... }: {
{ config, lib, pkgs-us, ... }: {
options.homeconfig.quickshell.enable = with lib; mkOption {
type = with types; bool;
@@ -7,8 +7,8 @@
config = lib.mkIf config.homeconfig.quickshell.enable {
programs.quickshell = {
enable = true;
};
home.packages = [
pkgs-us.quickshell
];
};
}