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. [ # Include the results of the hardware scan.
./hardware-configuration.nix ./hardware-configuration.nix
../common ../common
../common/graphical
]; ];
networking = { networking = {

View File

@@ -6,6 +6,10 @@
vSync = true; 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 = { home.file = {
wallpapers = { wallpapers = {
source = ./wallpapers; source = ./wallpapers;

View File

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