Skip to content

Latest commit

 

History

History
executable file
·
22 lines (17 loc) · 403 Bytes

i3.md

File metadata and controls

executable file
·
22 lines (17 loc) · 403 Bytes

i3 (window manager)

i3 is configured with home-manager but must be activated also at system level to set the environment (eg. opengl, dconf, …)

{ config, pkgs, lib, ... }:
{
  services.xserver = {
    enable = true;

    desktopManager = {
      xterm.enable = false;
    };

    windowManager.i3 = {
      enable = true;
      extraPackages = [ ];
    };
  };
}