From bc8559578ed3d04b3eae8116ede2f05b7f7417b7 Mon Sep 17 00:00:00 2001 From: Nico Date: Mon, 6 Oct 2025 19:08:05 +1100 Subject: [PATCH 1/2] aerospace: increase gaps --- stow/.config/aerospace/aerospace.toml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/stow/.config/aerospace/aerospace.toml b/stow/.config/aerospace/aerospace.toml index c3da7b8..fbf2d40 100644 --- a/stow/.config/aerospace/aerospace.toml +++ b/stow/.config/aerospace/aerospace.toml @@ -58,12 +58,12 @@ preset = 'qwerty' # See: # https://nikitabobko.github.io/AeroSpace/guide#assign-workspaces-to-monitors [gaps] - inner.horizontal = 6 - inner.vertical = 6 - outer.left = 6 - outer.bottom = 6 - outer.top = 6 - outer.right = 6 + inner.horizontal = 12 + inner.vertical = 12 + outer.left = 12 + outer.bottom = 12 + outer.top = 12 + outer.right = 12 [[on-window-detected]] From 038866736998ef12f383758ff7f9a61f27ba9666 Mon Sep 17 00:00:00 2001 From: Nico Date: Mon, 6 Oct 2025 19:11:44 +1100 Subject: [PATCH 2/2] aerospace: add matugen --- modules/desktop/de/aerospace.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/modules/desktop/de/aerospace.nix b/modules/desktop/de/aerospace.nix index d6be80c..202f650 100644 --- a/modules/desktop/de/aerospace.nix +++ b/modules/desktop/de/aerospace.nix @@ -1,4 +1,4 @@ -{ config, ... }: +{ config, pkgs, ... }: { services.aerospace.enable = true; @@ -6,4 +6,8 @@ homebrew.brews = [ "FelixKratz/formulae/borders" ]; + + environment.systemPackages = with pkgs; [ + matugen + ]; }