10 lines
219 B
Nix
10 lines
219 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
imports = [ ../modules/nitrogen.nix ];
|
|
home.file = {
|
|
".config/bspwm/screenlayout.sh".source = ./bspwm/screenlayout.sh;
|
|
".config/bspwm/host.sh".source = ./bspwm/host.sh;
|
|
};
|
|
}
|