15 lines
171 B
Nix
15 lines
171 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
config,
|
|
...
|
|
}: {
|
|
|
|
# enable hyprland
|
|
programs.hyprland.enable = true;
|
|
|
|
|
|
# give hyprlock perms to unlock
|
|
security.pam.services.hyprlock = {};
|
|
}
|