remove laptop to add as submodule

This commit is contained in:
2026-01-07 10:08:46 -06:00
parent c657dae471
commit a9db2c09e7
8 changed files with 22 additions and 207 deletions

View File

@@ -0,0 +1,21 @@
{ 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";
};
};
}