added quickshell

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

View File

@@ -0,0 +1,30 @@
{
self,
moduleWithSystem,
inputs,
...
}: {
flake.nixosModules.quickshell = moduleWithSystem ({
pkgs,
self',
inputs',
...
}: {
programs.name = {
enable = true;
package = self'.packages.hello;
};
});
perSystem = {
pkgs,
lib,
self',
...
}: {
packages.quickshell = inputs.wrappers.wrappers.quickshell.wrap {
inherit pkgs;
configDir = inputs.quickshell;
configFile = "${inputs.quickshell}/shell.qml";
};
};
}