dot_testing/home/khard/default.nix

14 lines
188 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 = {
".config/khard/config" = {
source = ../../.config/khard/config;
};
};
}