{ lib, config, pkgs, ... }:
{
    options.swaywm = {
        enable = lib.mkEnableOption "Enable sway window manager.";
        useNonFree = lib.mkOption {
            default = false;
            example = true;
            description = "Whether to enable non-free software in the sway config";
        };
        installGaming = lib.mkOption {
            default = false;
            example = true;
            description = "Whether to install gaming software on the system.";
        };
        systemPackages = lib.mkOption {
            default = [];
            description = "Add any additional packages desired. Merged with sway defaults.";
        };

    };

    ###
    ##  Configuration
    ###
    config = lib.mkIf config.swaywm.enable {

        programs.sway.enable = true;

        nixpkgs.config.allowUnfree = config.swaywm.useNonFree;
        # For R2ModMan
        # nixpkgs.config.permittedInsecurePackages = [
        #     "electron-25.9.0"
        # ];
        
        ###
        ##  XDG portal setup
        ###
        xdg.portal = {
            config = {
                common = {
                  default = [
                    "wlr"
                  ];
                };
            };
            extraPortals = with pkgs; [
                # xdg-desktop-portal-kde
                xdg-desktop-portal-gtk
            ];
            wlr.enable = true;
            enable = true;
        };
        xdg.sounds.enable = true;

        ###
        ##  System Packages
        ###
        environment.systemPackages = with pkgs; lib.lists.flatten [
             [
                bash
                foot
                git
                glib # gsettings
                grim
                libnotify
                mako
                ncspot
                networkmanagerapplet
                pavucontrol
                slurp
                swaylock
                swayidle
                wl-clipboard
                waybar
                wdisplays
                wofi
                xdg-utils
                zsh
                # Fonts
             ]
            config.swaywm.systemPackages
            # (lib.mkIf config.swaywm.installGaming [
            #     pkgs.lutris
            # ])
        ];

        # Thunar config
        programs.thunar = {
            enable = true;
            plugins = with pkgs.xfce; [
                thunar-archive-plugin
                thunar-volman
            ];
        };
        programs.file-roller.enable = true;
        programs.xfconf.enable = true;

        programs.zsh.enable = true;
        programs.steam.enable = config.swaywm.installGaming;

        programs.adb.enable = true;
        # kdeconnect setup
        programs.kdeconnect.enable = true;

        ###
        ##  Services
        ###
        services.gvfs.enable = true;  # thunar functionalities
        services.openssh.enable = true;
        services.dbus.enable = true;
        services.pipewire = {
          enable = true;
          alsa.enable = true;
          pulse.enable = true;
        };

        ###
        ##  Misc
        ###
        sound.enable = true;
        # Necessary for home-manager sway setup
        security.polkit.enable = true;

        hardware.opengl = {
            enable = true;
            driSupport = true;
        };
    };
}