{pkgs, inputs, ...}: { imports = [inputs.hyprland.nixosModules.default]; environment.systemPackages = with pkgs; [ gsettings-desktop-schemas pavucontrol pamixer pulseaudio grim slurp ]; security.pam.services.swaylock = {}; services = { blueman.enable = true; gvfs.enable = true; tumbler.enable = true; }; programs = { thunar = { enable = true; plugins = with pkgs.xfce; [ thunar-archive-plugin thunar-volman ]; }; chromium = { enable = true; extensions = [ "cjpalhdlnbpafiamejdnhcphjbkeiagm" # uBlock Origin "fnaicdffflnofjppbagibeoednhnbjhg" # Floccus "nngceckbapebfimnlniiiahkandclblb" # Bitwarden "dphilobhebphkdjbpfohgikllaljmgbn" # Simplelogin ]; extraOpts = { "BrowserSignin" = 0; "SyncDisabled" = true; "PasswordManagerEnabled" = false; "SpellcheckEnabled" = true; "SpellcheckLanguage" = ["en-GB"]; }; defaultSearchProviderSearchURL = "https://duckduckgo.com/?q={searchTerms}"; defaultSearchProviderEnabled = true; }; }; }