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

@@ -54,7 +54,6 @@
xfce.thunar
wl-clipboard
blueberry
pkgs-us.quickshell
] else []) ++ (if !config.homeconfig.minimal then [
cava
android-tools

View File

@@ -71,7 +71,7 @@
exec -a "$0" "$@" &
sleep 0.4
${pkgs.pywalfox-native}/bin/pywalfox update &
pkill -USR1 kitty
pidof kitty && pkill -USR1 kitty
pidof cava && pkill -USR1 cava
for i in ''$(ls /run/user/1000 | grep nvim); do
${pkgs.neovim-remote}/bin/nvr -s --servername /run/user/1000/''$i --remote-send '<cmd>colorscheme pywal<CR>';

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