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

@ -139,10 +139,13 @@
treefmt-config = {
projectRootFile = "flake.nix";
programs = {
nixfmt.enable = true;
# keep-sorted start
jsonfmt.enable = true;
prettier.enable = true;
keep-sorted.enable = true;
nixfmt.enable = true;
prettier.enable = true;
qmlformat.enable = true;
# keep-sorted end
};
};
forAllSystems =

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 = {

View file

@ -25,6 +25,7 @@
redhat.vscode-yaml
rust-lang.rust-analyzer
tamasfe.even-better-toml
theqtcompany.qt-qml
yzhang.markdown-all-in-one
# keep-sorted end
]