1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-30 14:11:02 +01:00
home-manager/tests/modules/programs/swaylock/legacy.nix
Austin Horstman cba2f9ce95 treewide: reformat nixfmt-rfc-style
Reformat repository using new nixfmt-rfc-style.
2025-04-08 08:50:05 -07:00

22 lines
486 B
Nix

{
home.stateVersion = "20.09";
programs.swaylock = {
settings = {
color = "808080";
font-size = 24;
indicator-idle-visible = false; # Test that this does nothing
indicator-radius = 100;
line-color = "ffffff";
show-failed-attempts = true;
};
};
nmt.script =
let
homeConfig = "home-files/.config/swaylock/config";
in
''
assertFileExists ${homeConfig}
assertFileContent ${homeConfig} ${./config}
'';
}