mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
10 lines
198 B
Nix
10 lines
198 B
Nix
{ inputs, pkgs, ... }: {
|
|
programs.hyprlock = {
|
|
enable = true;
|
|
package = inputs.hyprlock.packages.${pkgs.system}.hyprlock;
|
|
|
|
settings = {
|
|
animations.enabled = false;
|
|
};
|
|
};
|
|
}
|