blob: 43f7d763c9dc13316189f6bc37d51f47e325e4ab (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
{
pkgs,
pkgs-unstable,
lib,
config,
...
}:
{
imports = [ ./quickshell.nix ];
programs.quickshell = {
enable = true;
systemd.enable = true;
package = pkgs-unstable.quickshell;
systemd.target = "hyprland-session.target";
};
xdg.configFile."quickshell/shell.qml".source = ./shell.qml;
xdg.configFile."quickshell/Theme.qml".source = ./Theme.qml;
xdg.configFile."quickshell/PopupContext.qml".source = ./PopupContext.qml;
xdg.configFile."quickshell/bar".source = ./bar;
}
|