Files
nixos/modules/features/quickshell/default.nix
2026-08-05 17:12:49 +01:00

20 lines
452 B
Nix

{
moduleWithSystem,
inputs,
...
}: {
flake.nixosModules.quickshell = moduleWithSystem ({self', ...}: {
services.upower.enable = true;
environment.systemPackages = with self'.packages; [
quickshell
];
});
perSystem = {pkgs, ...}: {
packages.quickshell = inputs.wrappers.wrappers.quickshell.wrap {
inherit pkgs;
configDir = inputs.quickshell;
configFile = "${inputs.quickshell}/shell.qml";
};
};
}