Files
old-nixos-dotfiles/system/wm/sway.nix
2024-08-13 19:42:30 +09:00

13 lines
167 B
Nix

{ pkgs, lib, config, ... }:
{
imports = [
./gnome-keyring.nix
./dbus.nix
];
programs.sway = {
enable = true;
wrapperFeatures.gtk = true;
};
}