This commit is contained in:
Miguel Palhas
2025-04-24 22:27:13 +01:00
parent cbab3c5cb1
commit dbbb887a82
4 changed files with 20 additions and 2 deletions
+14
View File
@@ -0,0 +1,14 @@
{ config, pkgs, ... }:
{
xsession.windowManager.i3 = {
enable = true;
package = pkgs.i3-gaps;
config = {
modifier = "Mod4";
gaps = {
inner = 10;
outer = 5;
};
};
};
}
+1
View File
@@ -14,6 +14,7 @@
../common/programs/desktop
../common/programs/zen-browser.nix
../common/programs/hyprland
../common/programs/i3.nix
../common/programs/ghostty.nix
../common/programs/syncthing.nix
../common/programs/unity.nix
+4 -2
View File
@@ -2,8 +2,10 @@
{
services.xserver = {
enable = true;
displayManager.gdm.enable = true;
desktopManager.gnome.enable = true;
displayManager = {
defaultSession = "none+i3";
};
windowManager.i3.enable = true;
layout = "us";
xkbVariant = "";
+1
View File
@@ -11,6 +11,7 @@
../common/features/networking.nix
../common/features/nvidia.nix
../common/features/wayland.nix
../common/features/x11.nix
../common/features/pipewire.nix
../common/features/docker.nix
../common/features/fonts.nix