dot_testing/home/sxhkd/default.nix

18 lines
304 B
Nix
Raw Normal View History

2023-12-21 15:26:09 -06:00
{ lib, config, pkgs, home, ... }:
{
# managed by nixos configuration
home.packages = with pkgs; [
sxhkd
];
2023-12-21 15:26:09 -06:00
home.file = {
".config/sxhkd/sxhkdrc" = {
2024-04-06 17:29:20 -05:00
source = ../../.config/sxhkd/sxhkdrc;
2023-12-21 15:26:09 -06:00
};
2024-01-15 03:52:45 -06:00
".config/sxhkd/mouse" = {
2024-04-06 17:29:20 -05:00
source = ../../.config/sxhkd/mouse;
2024-01-15 03:52:45 -06:00
};
2023-12-21 15:26:09 -06:00
};
}