configuration.nix/modules/home/programs/swaylock/default.nix

12 lines
238 B
Nix
Raw Normal View History

2024-02-17 10:11:42 +01:00
{ config, ... }: {
2023-11-18 11:39:46 +01:00
programs.swaylock = {
enable = true;
settings = {
color = "000000";
line-color = "ffffff";
show-failed-attempts = true;
2024-02-17 10:11:42 +01:00
image = config.home.homeDirectory + "/pic/bg.png";
2023-11-18 11:39:46 +01:00
};
};
}