20 lines
478 B
Nix
20 lines
478 B
Nix
{ config, inputs, lib, pkgs, ... }:
|
|
let
|
|
unstable = inputs.nixpkgs-unstable.legacyPackages.${pkgs.stdenv.hostPlatform.system};
|
|
in
|
|
{
|
|
home.packages = with pkgs; [
|
|
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;
|
|
#};
|
|
}
|