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

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

View file

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