blob: d606167178da435e851a0a3ee62716c4ba2627ce (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
{ config, pkgs, ... }:
let
background = "${config.xdg.dataHome}/wayland/lockscreen";
in
{
programs.swaylock = {
enable = true;
package = pkgs.swaylock-effects;
settings = {
clock = true;
daemonize = true;
color = "404040";
timestr = "%H:%M";
datestr = "%a,%e %b";
image = background;
indicator-idle-visible = true;
};
};
}
|