Files
nixos/modules/features/quickshell/default.nix
2026-07-07 16:24:32 +01:00

19 lines
419 B
Nix

{
moduleWithSystem,
inputs,
...
}: {
flake.nixosModules.quickshell = moduleWithSystem ({self', ...}: {
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";
};
};
}