sway/module.nix: init

Trying out sway, maybe actually viable?
This commit is contained in:
Charlie Root 2025-03-10 21:47:31 +01:00
commit ce259e9afe
Signed by: faukah
SSH key fingerprint: SHA256:Uj2AXqvtdCA4hn5Hq0ZonhIAyUqI1q4w2sMG3Z1TH7E

View file

@ -0,0 +1,16 @@
{
config,
lib,
pkgs,
...
}: let
in {
programs.sway = {
enable = true;
xwayland.enable = true;
};
environment.systemPackages = builtins.attrValues {
inherit (pkgs) i3status;
};
}