forked from nico/dots
20 lines
381 B
Nix
20 lines
381 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
services.yabai = {
|
|
enable = true;
|
|
enableScriptingAddition = true;
|
|
extraConfig = builtins.readFile ../../../stow/.config/yabai/yabairc;
|
|
};
|
|
|
|
system.defaults.spaces.spans-displays = lib.mkForce false;
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
skhd
|
|
matugen
|
|
];
|
|
|
|
homebrew.brews = [
|
|
"FelixKratz/formulae/borders"
|
|
];
|
|
}
|