mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
15 lines
210 B
Nix
15 lines
210 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
programs.swaylock = {
|
|
enable = true;
|
|
package = pkgs.swaylock-effects;
|
|
settings = {
|
|
clock = true;
|
|
font = "Iosevka";
|
|
indicator = true;
|
|
};
|
|
};
|
|
}
|