I3

From NixOS Wiki
Revision as of 02:02, 12 July 2018 by imported>Grahamc (noted dconf)

i3 is a tiling window manager for X.

Enabling

To use i3 set service.xserver.windowManager.i2.enable to true. For example:

 
/etc/nixos/configuration.nix
{ config, pkgs, callPackage, ... }: {
  ...
  services.xserver = {
    enable = true;
    desktopManager = {
      default = "none";
      xterm.enable = false;
    };
    windowManager.i3.enable = true;
  };
  ...
}

With a desktop manager

i3 is a window manager and does not provide "cosmetic" services like managing multiple monitor configuration or media keys. This is what is usually delegated to a desktop manager. To use xfce as a desktop manager on top of i3, see Xfce#Using_as_a_desktop_manager_and_not_a_window_manager.

DConf

If your settings aren't being saved, like the size of file selection windows, you need to enable dconf:

programs.dconf.enable = true; services.dbus.packages = [ pkgs.gnome3.dconf ];

Wallpaper

If ~/.background-image exists then it will be displayed as a wallpaper. Options services.xserver.desktopManager.wallpaper.combineScreens and .mode control exactly how it is displayed.