{ userName, pkgs, ... }: { users.users.${userName} = { hashedPassword = "$6$rounds=500000$TaikR1KI4CGveV0a$jLrBjNScflgniUiy87zxQ.IjnyK8K7FbYTW7L0k0EBVrdiImds26WwNjA6DrQpENALwPMzJVIK5BTie17fFVG."; }; config.home-manager.users.${userName} = { nixpkgs.config = { allowUnfree = true; }; home.packages = with pkgs; [ thunderbird libreoffice element-desktop keepassxc ]; programs.firefox = { enable = true; profiles.default.settings = { "dom.security.https_only_mode" = true; "browser.cache.disk.enable" = false; }; }; }; }