{ config, lib, pkgs, profile, ... }: { imports = [ ./configs/steam.nix ]; users.users.hanna = { home = "/home/hanna"; isNormalUser = true; shell = pkgs.zsh; autoSubUidGidRange = true; packages = with pkgs; [ starship claude direnv bat lsr ] ++ (lib.optionals (profile == "nixos") [ bitwarden-desktop signal-desktop zed-editor.fhs prismlauncher vintagestory spotifast discord helium delta ]) ++ (lib.optionals config.services.desktopManager.gnome.enable [ gnomeExtensions.rounded-window-corners-reborn gnomeExtensions.dash-to-dock colloid-icon-theme capitaine-cursors adw-gtk3 ]); }; hjem.users.hanna = { enable = true; imports = [ ./configs/starship.nix ./configs/ghostty.nix ./configs/gtk-3.0.nix ./configs/direnv.nix ./configs/claude.nix ./configs/helix.nix ./configs/zsh.nix ./configs/npm.nix ./configs/git.nix ./configs/bat.nix ./configs/xdg.nix ./configs/zed.nix ]; }; }