added quickshell

This commit is contained in:
2026-07-07 16:12:04 +01:00
parent f9b5c03e87
commit c1ce520858
3 changed files with 50 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
{
self,
moduleWithSystem,
inputs,
...
}: {
flake.nixosModules.quickshell = moduleWithSystem ({
pkgs,
self',
inputs',
...
}: {
environment.systemPackages = with self'.packages; [
quickshell
];
});
perSystem = {
pkgs,
lib,
self',
...
}: {
packages.quickshell = inputs.wrappers.wrappers.quickshell.wrap {
inherit pkgs;
configDir = inputs.quickshell;
configFile = "${inputs.quickshell}/shell.qml";
};
};
}