forked from foxora/nix
16 lines
356 B
Nix
16 lines
356 B
Nix
{upkgs, ...}: {
|
|
home.packages = with upkgs; [
|
|
hellwal
|
|
];
|
|
|
|
# writes ./wallust.toml to ~/.config/hellwal/wallust.toml
|
|
#xdg.configFile."wallust/wallust.toml" = {
|
|
#source = ./wallust.toml;
|
|
#};
|
|
|
|
# writes ./templates to ~/.config/hellwal/templates
|
|
#xdg.configFile."hellwal/templates" = {
|
|
#recursive = true;
|
|
#source = ./templates;
|
|
#};
|
|
}
|