dot_testing/home/khard/default.nix

14 lines
196 B
Nix
Raw Normal View History

2024-05-18 22:19:16 -05:00
{ lib, config, pkgs, home, ... }:
{
home.packages = with pkgs; [
khard
];
home.file = {
2024-07-29 13:01:35 -05:00
".config/khard/khard.conf" = {
2024-05-25 10:32:43 -05:00
source = ../../.config/khard/khard.conf;
2024-05-18 22:19:16 -05:00
};
};
}