{ pkgs, secretsDir, inputs, config, self, lib, ... }: { users.users.me = { isNormalUser = true; #passwordFile = "${secretsDir}/me-pwd"; password = "changeme"; extraGroups = [ "networkmanager" "wheel" "libvirtd" ]; # Enable ‘sudo’ for the user. }; home-manager.extraSpecialArgs = { inherit self; hostname = config.networking.hostName; }; home-manager.users.me = import ./gui-home.nix; #home-manager.useGlobalPkgs = true; nixpkgs.config.allowUnfree = true; fonts.fonts = with pkgs; [ hack-font ]; users.users.me.openssh.authorizedKeys.keys = [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPAgNB1nsKZ5KXnmR6KWjQLfwhFKDispw24o8M7g/nbR me@bitwarden" "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAII/mCDzCBE2J1jGnEhhtttIRMKkXMi1pKCAEkxu+FAim me@main" "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGw5kYmBQl8oolNg2VUlptvvSrFSESfeuWpsXRovny0x me@phone" ]; }