22 lines
516 B
Nix
22 lines
516 B
Nix
{ 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;
|
|
|
|
configs = {
|
|
|
|
default = config.homeDirectory + "/Projects/Olympus/system/users/nathan/home-manager/dotfiles/quickshell/shell.qml";
|
|
};
|
|
|
|
activeConfig = "default";
|
|
};
|
|
};
|
|
}
|