Sway phase 1

This commit is contained in:
Nathan McCarty 2025-07-08 15:03:40 -04:00
parent 780ffcaeb8
commit 63a33662ef
3 changed files with 32 additions and 6 deletions

View file

@ -0,0 +1,24 @@
{
config,
lib,
pkgs,
inputs',
...
}: {
home.packages = with pkgs; [
inputs'.nixpkgs-unstable.legacyPackages.xwayland-satellite
];
wayland.windowManger.sway = {
enable = true;
package = null;
sway = {
xwayland = false;
config = {
modifer = "Mod4";
startup = [
{command = "env DISPLAY=:0 xwayland-satellite";}
];
};
};
};
}