nixdots/home/programs/graphical/launchers/walker/default.nix

21 lines
354 B
Nix
Raw Normal View History

2024-06-10 19:55:38 +02:00
{
osConfig,
2024-06-10 19:55:38 +02:00
pkgs,
lib,
2024-06-10 19:55:38 +02:00
...
}: let
inherit (lib) mkIf;
2024-06-10 20:09:04 +02:00
cfg = osConfig.myOptions.home-manager.programs.launchers.walker;
in {
config = mkIf cfg.enable {
home.packages = with pkgs; [
walker
];
2024-06-10 19:55:38 +02:00
xdg.configFile = {
"walker/config.json".source = ./config.json;
"walker/style.css".source = ./style.css;
};
2024-06-10 19:55:38 +02:00
};
}