12 lines
160 B
Nix
12 lines
160 B
Nix
{
|
|
pkgs,
|
|
...
|
|
}: {
|
|
programs.quickshell = {
|
|
enable = true;
|
|
systemd = {
|
|
enable = true;
|
|
target = "graphical-session.target";
|
|
};
|
|
};
|
|
}
|