{ 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"; }; }; }