add quickshell

This commit is contained in:
müde 2026-03-15 23:25:08 +01:00
parent 26a4d33742
commit c7e8c1a9f5
3 changed files with 23 additions and 2 deletions

View file

@ -48,6 +48,12 @@
};
chromium.enable = true;
quickshell = {
enable = true;
systemd.enable = true;
#activeConfig = "~/.config/";
};
};
home.packages = with pkgs; [
@ -85,6 +91,17 @@
home.file = {
"idea.properties".text = "idea.filewatcher.executable.path = ${pkgs.fsnotifier}/bin/fsnotifier";
".config/quickshell" = {
source = ./.config/quickshell;
recursive = true;
};
};
home.sessionVariables = {
XDG_CACHE_HOME = "$HOME/.cache";
XDG_CONFIG_HOME = "$HOME/.config";
XDG_DATA_HOME = "$HOME/.local/share";
XDG_STATE_HOME = "$HOME/.local/state";
};
services = {