sway: swayfx -> sway

This commit is contained in:
Aly Raffauf 2024-08-19 10:01:19 -04:00
parent 5823611b13
commit ad69f4ad44
2 changed files with 3 additions and 7 deletions

View file

@ -14,7 +14,6 @@
in { in {
enable = true; enable = true;
checkConfig = false; checkConfig = false;
package = lib.mkDefault pkgs.swayfx;
wrapperFeatures.gtk = true; wrapperFeatures.gtk = true;
systemd = { systemd = {

View file

@ -5,12 +5,9 @@
... ...
}: { }: {
config = lib.mkIf config.ar.desktop.sway.enable { config = lib.mkIf config.ar.desktop.sway.enable {
programs = { programs.sway = {
sway = {
enable = true; enable = true;
extraPackages = lib.mkDefault []; extraPackages = lib.mkDefault [];
package = lib.mkDefault pkgs.swayfx;
};
}; };
}; };
} }