18 lines
200 B
Nix
18 lines
200 B
Nix
|
{
|
||
|
...
|
||
|
}: {
|
||
|
imports = [
|
||
|
./config.nix
|
||
|
./script.nix
|
||
|
./xressources.nix
|
||
|
];
|
||
|
|
||
|
xsession.windowManager.bspwm = {
|
||
|
enable = true;
|
||
|
};
|
||
|
|
||
|
services.sxhkd = {
|
||
|
enable = true;
|
||
|
};
|
||
|
|
||
|
}
|