mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 07:29:43 +00:00
14 lines
191 B
Nix
14 lines
191 B
Nix
{
|
|
pkgs,
|
|
...
|
|
}: {
|
|
home.packages = with pkgs; [
|
|
walker
|
|
];
|
|
|
|
xdg.configFile = {
|
|
"walker/config.json".source = ./config.json;
|
|
"walker/style.css".source = ./style.css;
|
|
};
|
|
}
|