hyprlock feature

This commit is contained in:
2026-08-18 11:37:01 +01:00
parent 15967f2fa1
commit a67a00725c
6 changed files with 211 additions and 5 deletions

View File

@@ -0,0 +1,17 @@
{
inputs,
moduleWithSystem,
...
}: {
flake.nixosModules.hyprlock = moduleWithSystem ({self', ...}: {
environment.systemPackages = with self'.packages; [
hyprock
];
});
perSystem = {pkgs, ...}: {
packages.hyprlock = inputs.wrappers.wrappers.hyprlock.wrap {
inherit pkgs;
"hyprlock.conf".path = ./hyprlock.conf;
};
};
}