Anthony Rodriguez
b808281674
Started moving HM config to the new local modules system. Conditionally toggling based on profiles and modules.
14 lines
238 B
Nix
14 lines
238 B
Nix
{
|
|
lib,
|
|
inputs,
|
|
pkgs,
|
|
osConfig,
|
|
...
|
|
}: {
|
|
config = lib.mkIf osConfig.local.modules.hyprland.enable {
|
|
programs.hyprlock = {
|
|
enable = true;
|
|
package = inputs.hyprlock.packages.${pkgs.system}.hyprlock;
|
|
};
|
|
};
|
|
}
|