fix niri config spacing

This commit is contained in:
William 2025-10-20 10:34:38 -03:00
parent 0758864078
commit d931282a35
2 changed files with 16 additions and 10 deletions

View file

@ -116,7 +116,6 @@ in
slowdown 0.3 slowdown 0.3
} }
// open zen at half window width
window-rule { window-rule {
match app-id="zen" match app-id="zen"
default-column-width { proportion ${if isRotterdam then "0.5" else "1"}; } default-column-width { proportion ${if isRotterdam then "0.5" else "1"}; }

View file

@ -1,10 +1,17 @@
{ pkgs, ... }: { pkgs, ... }:
{ {
programs.git = { programs = {
git = {
enable = true; enable = true;
diff-so-fancy.enable = true; settings.user = {
userName = "William"; name = "William";
userEmail = "baduhai@proton.me"; email = "baduhai@proton.me";
};
};
diff-so-fancy = {
enable = true;
enableGitIntegration = true;
};
}; };
} }