Files
dotfiles/config/modules/quickshell/quickshell.nix
2026-02-22 15:45:07 +00:00

23 lines
450 B
Nix

{ den, modules, ... }:
{
modules.quickshell = {
homeManager =
{
pkgs,
lib,
config,
...
}:
{
programs.quickshell = {
systemd.enable = true;
enable = true;
activeConfig = "main";
configs = {
main = config.lib.file.mkOutOfStoreSymlink "/home/doloro/dotfiles/config/modules/quickshell/quickshell";
};
};
};
};
}