sway: deleted orphaned config

This commit is contained in:
Aly Raffauf 2024-04-17 20:10:38 -04:00
parent 38c2ddc338
commit 35595293c3

View file

@ -1,21 +0,0 @@
{
pkgs,
lib,
config,
...
}: {
options = {
desktopConfig.windowManagers.sway.enable =
lib.mkEnableOption "Sway window manager session.";
};
config = lib.mkIf config.desktopConfig.windowManagers.sway.enable {
desktopConfig.displayManagers.lightdm.enable = lib.mkDefault true;
programs.sway.enable = true;
services.dbus.packages = [pkgs.gcr];
environment.sessionVariables.NIXOS_OZONE_WL = "1";
};
}