dot_testing/home/bspwm/default.nix

12 lines
176 B
Nix
Raw Normal View History

2023-12-20 22:33:00 -06:00
{ lib, config, pkgs, home, ... }:
{
2023-12-21 15:26:09 -06:00
# program activation is managed by nixos config
2023-12-20 22:33:00 -06:00
home.file = {
".config/bspwm/bspwmrc" = {
source = ./bspwmrc;
};
};
}