miniding changes

This commit is contained in:
2022-02-13 21:26:34 +00:00
parent cb5c722082
commit c7c8d89800
3 changed files with 8 additions and 3 deletions

View File

@@ -9,6 +9,7 @@
[ # Include the results of the hardware scan.
./hardware-configuration.nix
../common
../common/graphical
];
networking = {

View File

@@ -6,6 +6,10 @@
vSync = true;
};
xsession.windowManager.i3.config.gaps.outer = 6;
xsession.windowManager.i3.config.gaps.inner = 5;
xsession.windowManager.i3.config.window.border = 2;
home.file = {
wallpapers = {
source = ./wallpapers;

View File

@@ -109,8 +109,8 @@ in {
};
gaps = {
outer = 10;
inner = 5;
outer = lib.mkDefault 10;
inner = lib.mkDefault 5;
smartBorders = "on";
};
@@ -156,7 +156,7 @@ in {
terminal = "kitty";
window = {
border = 3;
border = lib.mkDefault 3;
titlebar = false;
commands = [
{ command = "move position center #2116 46"; criteria = { class = "jetbrains-toolbox"; }; }