blob: 6c1164e5e86d57e45d0dcaa919ac200792c19b3e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
{ config, pkgs, lib, ...}:
{
options.aerospace.enable = lib.mkEnableOption "Enalbe aerospace and setup";
config = lib.mkIf config.aerospace.enable {
programs.aerospace = {
enable = true;
userSettings = {
gaps = {
outer = 5;
};
mode.main.binding = {
alt-h = "focus left";
alt-j = "focus down";
alt-k = "focus up";
alt-l = "focus right";
};
};
};
};
}
|