remove niri and swayfx

This commit is contained in:
TheWanderingCrow 2025-04-22 09:34:29 -04:00
parent 304a1dfce3
commit f690ac4fd4
2 changed files with 0 additions and 54 deletions

View file

@ -1,17 +0,0 @@
{
lib,
config,
...
}: {
config = {
programs.niri = lib.mkIf config.desktop.niri.enable {
enable = true;
};
environment = lib.mkIf config.desktop.niri.enable {
sessionVariables = {
NIXOS_OZONE_WL = "1";
};
};
};
}

View file

@ -1,37 +0,0 @@
{
inputs,
pkgs,
lib,
config,
...
}: {
config = {
programs.sway = lib.mkIf config.desktop.swayfx.enable {
package = pkgs.swayfx;
enable = true;
xwayland.enable = true;
extraPackages = with pkgs; [
foot
wofi
swaynotificationcenter
udiskie
polkit_gnome
swayidle
sway-audio-idle-inhibit
swaylock-effects
sway-contrib.grimshot
waybar
wl-clipboard
xorg.xrandr
hyprlock
];
};
programs.dconf.enable = true;
environment = lib.mkIf config.desktop.swayfx.enable {
sessionVariables = {
NIXOS_OZONE_WL = "1";
};
};
};
}