Revert "feat: add uwsm"

This reverts commit 9894be9b65.
This commit is contained in:
Nydragon 2024-12-11 19:43:40 +01:00
parent b1b1689758
commit 3365a872bc
Signed by: nydragon
SSH key fingerprint: SHA256:WcjW5NJPQ8Dx4uQDmoIlVPLWE27Od3fxoe0IUvuoPHE
2 changed files with 4 additions and 23 deletions

View file

@ -1,10 +1 @@
{ lib, config, ... }:
lib.mkIf config.programs.hyprland.enable {
programs.uwsm = {
waylandCompositors.hyprland = {
prettyName = "Hyprland";
comment = "Hyprland compositor managed by UWSM";
binPath = "/run/current-system/sw/bin/Hyprland";
};
};
}
{ lib, config, ... }: lib.mkIf config.programs.hyprland.enable { }

View file

@ -1,17 +1,7 @@
{ config, lib, ... }:
lib.mkIf config.programs.sway.enable {
programs = {
uwsm = {
waylandCompositors.sway = {
prettyName = "Sway";
comment = "Sway compositor managed by UWSM";
binPath = "/run/current-system/sw/bin/sway";
};
};
sway = {
wrapperFeatures.gtk = true;
extraPackages = [ ];
};
programs.sway = {
wrapperFeatures.gtk = true;
extraPackages = [ ];
};
}