2023-12-21 15:26:09 -06:00
|
|
|
{ lib, config, pkgs, home, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
# managed by nixos configuration
|
2024-03-13 07:14:47 -05:00
|
|
|
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
|
|
|
};
|
|
|
|
}
|