more modules

This commit is contained in:
2026-02-17 22:24:41 +00:00
parent 5f063d825e
commit 07e47f87e6
10 changed files with 282 additions and 21 deletions

View File

@@ -0,0 +1,27 @@
{ den, modules, ... }:
{
modules.quickshell = {
homeManager =
{ pkgs, ... }:
{
xdg.configFile."quickshell" = {
recursive = true;
source = pkgs.lib.file.mkOutOfStoreSymlink ./quickshell;
};
systemd.user.services.quickshell = {
Unit = {
Description = "Quickshell daemon";
After = [ "hyprland-session.target" ];
};
Install = {
WantedBy = [ "default.target" ];
};
Service = {
ExecStart = "${pkgs.quickshell}/bin/quickshell";
Restart = "on-failure";
RestartSec = "5s";
};
};
};
};
}