{ pkgs, inputs, ... }: { imports = [ inputs.hyprland.nixosModules.default ./common.nix ]; environment.systemPackages = with pkgs; [ gsettings-desktop-schemas pavucontrol grim slurp ]; security = { pam.services.swaylock = {}; rtkit.enable = true; }; sound.enable = true; hardware.pulseaudio.enable = false; services = { pipewire = { enable = true; alsa.enable = true; alsa.support32Bit = true; pulse.enable = true; }; blueman.enable = true; gvfs.enable = true; tumbler.enable = true; }; programs = { thunar = { enable = true; plugins = with pkgs.xfce; [ thunar-archive-plugin thunar-volman ]; }; }; }