15 lines
222 B
Nix
15 lines
222 B
Nix
{ lib, config, pkgs, home, ... }:
|
|
|
|
{
|
|
# managed by nixos configuration
|
|
|
|
home.file = {
|
|
".config/sxhkd/sxhkdrc" = {
|
|
source = ./sxhkdrc;
|
|
};
|
|
".config/sxhkd/mouse" = {
|
|
source = ./mouse;
|
|
};
|
|
};
|
|
}
|