Add walker launcher

This commit is contained in:
ItsDrike 2024-06-10 19:55:38 +02:00
parent 63113f0fd6
commit 705ef3451a
Signed by: ItsDrike
GPG key ID: FA2745890B7048C0
4 changed files with 201 additions and 1 deletions

View file

@ -0,0 +1,13 @@
{
pkgs,
...
}: {
home.packages = with pkgs; [
walker
];
xdg.configFile = {
"walker/config.json".source = ./config.json;
"walker/style.css".source = ./style.css;
};
}