17 lines
248 B
Nix
17 lines
248 B
Nix
{config, pkgs, lib, ...}: {
|
|
imports = [
|
|
# Custom Bar
|
|
# ./sketchybar.nix
|
|
# TODO: Customize Bar Later
|
|
];
|
|
environment.systemPackages = with pkgs; [
|
|
yabai
|
|
];
|
|
services.yabai = {
|
|
enable = true;
|
|
config = {
|
|
|
|
};
|
|
};
|
|
}
|