dot_testing/home/sxhkd/default.nix

15 lines
222 B
Nix
Raw Permalink Normal View History

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