config.nix/home/desktop/shell/walker.nix
2026-03-30 22:03:03 +02:00

26 lines
399 B
Nix

{
config,
pkgs,
inputs,
lib,
osConfig,
...
}:
{
config = lib.mkIf osConfig.desktop.shell.walker.enable {
programs = {
walker = {
enable = true;
runAsService = true;
config = {
theme = "noctalia";
};
};
};
};
imports = lib.mkIf osConfig.desktop.shell.walker.enable [
inputs.walker.homeManagerModules.default
]
}