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