Removed i3 module

This commit is contained in:
Jan-Bulthuis 2025-02-27 11:12:42 +01:00
parent d2fa73f887
commit 8b70bcb229
3 changed files with 0 additions and 41 deletions

View File

@ -14,7 +14,6 @@ in
# Import desktop environment modules # Import desktop environment modules
./bar/waybar.nix ./bar/waybar.nix
./lock-screen/waylock.nix ./lock-screen/waylock.nix
./window-manager/i3.nix
./window-manager/river.nix ./window-manager/river.nix
]; ];

View File

@ -1,27 +0,0 @@
{
config,
lib,
pkgs,
...
}:
let
cfg = config.modules.i3;
in
{
options.modules.i3.enable = lib.mkEnableOption "i3";
config = lib.mkIf cfg.enable {
# Set desktop type to x11
# modules.desktop.x11 = true;
modules.rofi.enable = true;
desktop.initScript = ''
i3
'';
xsession.windowManager.i3 = {
enable = true;
};
};
}

View File

@ -5,17 +5,4 @@
river = { river = {
programs.river.enable = true; programs.river.enable = true;
}; };
i3 = {
services.xserver = {
layout = "us";
xkbVariant = "";
enable = true;
desktopManager = {
xterm.enable = true;
xfce = {
enable = true;
};
};
};
};
} }