From 36a496fe5b3791bded74924e14b871a19658448b Mon Sep 17 00:00:00 2001 From: Jarkko Toivanen Date: Thu, 20 Apr 2023 20:06:22 +0300 Subject: [PATCH] i3 --- nixos/desktop/configuration.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/nixos/desktop/configuration.nix b/nixos/desktop/configuration.nix index 6a99a6f..ff60e9a 100644 --- a/nixos/desktop/configuration.nix +++ b/nixos/desktop/configuration.nix @@ -99,6 +99,21 @@ lightdm.enable = true; autoLogin.enable = true; autoLogin.user = "jt"; + defaultSession = "none+i3"; + }; + windowManager = { + i3 = { + enable = true; + extraPackages = with pkgs; [ + dmenu + rofi + dunst + imagemagick + xclip + i3status + i3lock + ]; + }; }; desktopManager = { xterm.enable = false;