nix/module/Sway.nix

41 lines
754 B
Nix

{
config,
lib,
pkgs,
...
}: let
cfg = config.module.sway;
in {
options.module.sway = {
enable = lib.mkEnableOption "the Sway WM.";
extraConfig = lib.mkOption {
default = "";
type = lib.types.str;
};
};
config = lib.mkIf cfg.enable {
services.gnome.gnome-keyring.enable = lib.mkForce false;
environment.variables.XDG_CURRENT_DESKTOP = "sway";
module = {
bluetooth.enable = true;
brightness.enable = true;
portal.enable = true;
realtime.enable = true;
sound.enable = true;
waybar.enable = true;
wayland.enable = true;
};
programs.sway = {
enable = true;
wrapperFeatures = {
base = true;
gtk = true;
};
extraPackages = with pkgs; [
swaykbdd
];
};
};
}