28 lines
667 B
Nix
28 lines
667 B
Nix
{ den, modules, ... }:
|
|
{
|
|
modules.quickshell = {
|
|
homeManager =
|
|
{
|
|
pkgs,
|
|
lib,
|
|
config,
|
|
...
|
|
}:
|
|
{
|
|
programs.quickshell = {
|
|
systemd.enable = true;
|
|
systemd.target = "hyprland-session.target";
|
|
enable = true;
|
|
activeConfig = "main";
|
|
configs = {
|
|
main = config.lib.file.mkOutOfStoreSymlink "/home/doloro/dotfiles/config/modules/quickshell/quickshell";
|
|
};
|
|
};
|
|
# systemd.user.services.quickshell = {
|
|
# partOf = [ "hyprland-session.target" ];
|
|
# after = [ "hyprland-session.target" ];
|
|
# };
|
|
};
|
|
};
|
|
}
|