{ pkgs, hyprland, ... }: { imports = [ ./desktop.nix hyprland.nixosModules.default ]; environment.systemPackages = with pkgs; [ xdg-utils gsettings-desktop-schemas ]; security.pam.services.swaylock = { }; services = { blueman.enable = true; gvfs.enable = true; tumbler.enable = true; }; xdg.portal.extraPortals = with pkgs; [ xdg-desktop-portal-gtk ]; programs = { hyprland.enable = true; thunar = { enable = true; plugins = with pkgs.xfce; [ thunar-archive-plugin thunar-volman ]; }; }; }