dot_testing/home/bspwm/default.nix
2023-12-21 15:26:09 -06:00

12 lines
176 B
Nix

{ lib, config, pkgs, home, ... }:
{
# program activation is managed by nixos config
home.file = {
".config/bspwm/bspwmrc" = {
source = ./bspwmrc;
};
};
}