dotfiles/user-modules/desktop/lock-screen/waylock.nix

21 lines
245 B
Nix
Raw Normal View History

2024-07-19 12:00:55 +00:00
{
lib,
pkgs,
config,
...
}:
2024-07-18 04:08:27 +00:00
with lib;
let
cfg = config.modules.waylock;
2024-07-19 12:00:55 +00:00
in
{
2024-07-18 04:08:27 +00:00
options.modules.waylock = {
enable = mkEnableOption "waylock";
};
config = {
2024-07-19 12:00:55 +00:00
home.packages = mkIf cfg.enable (with pkgs; [ waylock ]);
2024-07-18 04:08:27 +00:00
};
2024-07-19 12:00:55 +00:00
}