mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-26 18:23:20 +01:00
20 lines
424 B
Nix
20 lines
424 B
Nix
|
{
|
||
|
home-manager.sharedModules = [{
|
||
|
programs.swaylock = {
|
||
|
package = pkgs."swaylock-effects";
|
||
|
settings = {
|
||
|
show-keyboard-layout = true;
|
||
|
daemonize = true;
|
||
|
effect-blur = "5x2";
|
||
|
clock = true;
|
||
|
indicator = true;
|
||
|
font-size = 25;
|
||
|
indicator-radius = 85;
|
||
|
indicator-thickness = 16;
|
||
|
screenshots = true;
|
||
|
fade-in = 1;
|
||
|
};
|
||
|
};
|
||
|
}];
|
||
|
}
|