blob: bc83feb7876b1fbede46ca142853ead88095f3a3 (
plain)
| 1
2
3
4
5
6
7
8
9
 | { pkgs, config, ... }:
{
  home.packages = with pkgs; [ labwc ];
  home.file.".config/labwc/rc.xml".source = ./rc.xml;
  home.file.".config/labwc/autostart".source = ./autostart;
  home.file.".themes/gruvbox-material-dark-blocks".source = ./gruvbox-material-dark-blocks;
}
 |