config.nix/modules/desktop/walker.nix
martyTF 5fa40025d0 we just gettin started
just a few more modules, like bitwarden, syncthing, screenshots
2025-12-20 05:59:46 +01:00

24 lines
310 B
Nix

{
config,
pkgs,
inputs,
lib,
...
}:
{
options = {
desktop = {
walker.enable = lib.mkEnableOption "enable walker";
};
};
config = lib.mkIf config.desktop.walker.enable {
programs = {
walker = {
enable = true;
runAsService = true;
};
};
};
}