1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-17 03:58:30 +02:00
home-manager/tests/modules/programs/swaylock/settings.nix
2022-06-07 21:01:14 +02:00

17 lines
415 B
Nix

{ ... }: {
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}
'';
}