dotfiles-nixos/nixos/i3.nix
2023-06-08 15:11:21 +02:00

39 lines
885 B
Nix

{ config, lib, pkgs, ... }:
{
environment.pathsToLink = [ "/libexec" ]; # links /libexec from derivations to /run/current-system/sw
# Define the i3 window manager configuration
services.xserver = {
xrandrHeads = {
[
"HDMI-1 --auto --left-of DP-1"
"DP-1 --auto --primary --right-of HDMI-1"
];
};
enable = true;
desktopManager = {
xterm.enable = false;
};
displayManager = {
defaultSession = "none+i3";
};
windowManager.i3 = {
enable = true;
extraPackages = with pkgs; [
dmenu #application launcher most people use
i3status # gives you the default i3 status bar
i3lock #default i3 screen locker
i3blocks #if you are planning on using i3blocks over i3status
];
};
windowManager.default = "i3";
layout = "us";
xkbVariant = "";
};
}