remove i3

This commit is contained in:
TheWanderingCrow 2025-04-22 09:36:46 -04:00
parent f690ac4fd4
commit c426d8899f
8 changed files with 2 additions and 167 deletions

View file

@ -5,10 +5,7 @@
}: {
imports = [
# Wayland desktops here
./wayland/sway.nix
./wayland/kde.nix
# X11 desktops here
./x11/i3.nix
./sway.nix
./kde.nix
];
}

View file

@ -1,21 +0,0 @@
{
inputs,
pkgs,
lib,
config,
...
}: {
config = lib.mkIf config.desktop.i3.enable {
services.xserver = {
displayManager.startx.enable = true;
windowManager.i3 = {
enable = true;
extraPackages = with pkgs; [
xorg.xrandr
xterm
rofi
];
};
};
};
}