fixed i3wm

This commit is contained in:
vali 2024-04-10 12:10:30 +02:00
commit adf6af8c76
2 changed files with 5 additions and 4 deletions

View file

@ -1,6 +1,6 @@
{ pkgs, lib, config, ... }:
{
import = [
imports = [
./wms/i3wm.nix
];
}

View file

@ -1,4 +1,5 @@
{ pkgs, lib, config, ...}
{ pkgs, lib, config, ...}:
{
options = {
i3wm.enable = lib.mkEnableOption "enable i3wm";
@ -11,7 +12,7 @@
xfce = {
enable = true;
noDesktop = true;
nableXfwm = false;
enableXfwm = false;
};
};
displayManager.defaultSession="xfce+i3";
@ -24,5 +25,5 @@
];
};
};
}
};
}