modules/home: Remove standalone hm compatibility layer

This commit is contained in:
SebastianStork 2026-02-06 15:09:08 +01:00
parent e0c8bb401b
commit d54e079db8
Signed by: SebastianStork
SSH key fingerprint: SHA256:iEM011ogNMG1q8+U500adGu/9rpPuZ2KnFtbdLeqTiI
5 changed files with 22 additions and 22 deletions

View file

@ -1,9 +1,10 @@
{
config,
osConfig,
pkgs-unstable,
lib,
...
}@moduleArgs:
}:
let
cfg = config.custom.programs.hyprlock;
in
@ -11,7 +12,7 @@ in
options.custom.programs.hyprlock = {
enable = lib.mkEnableOption "";
fprintAuth = lib.mkEnableOption "" // {
default = moduleArgs.osConfig.services.fprintd.enable or false;
default = osConfig.services.fprintd.enable;
};
};