{ config, lib, pkgs, ... }: with lib; let cfg = config.home; languageSubModule = types.submodule { options = { base = mkOption { default = null; type = types.nullOr types.str; description = '' The language to use unless overridden by a more specific option. ''; }; ctype = mkOption { default = null; type = types.nullOr types.str; description = '' Character classification category. ''; }; numeric = mkOption { default = null; type = types.nullOr types.str; description = '' The language to use for numerical values. ''; }; time = mkOption { default = null; type = types.nullOr types.str; description = '' The language to use for formatting times. ''; }; collate = mkOption { default = null; type = types.nullOr types.str; description = '' The language to use for collation (alphabetical ordering). ''; }; monetary = mkOption { default = null; type = types.nullOr types.str; description = '' The language to use for formatting currencies and money amounts. ''; }; messages = mkOption { default = null; type = types.nullOr types.str; description = '' The language to use for messages, application UI languages, etc. ''; }; paper = mkOption { default = null; type = types.nullOr types.str; description = '' The language to use for paper sizes. ''; }; name = mkOption { default = null; type = types.nullOr types.str; description = '' The language to use for personal names. ''; }; address = mkOption { default = null; type = types.nullOr types.str; description = '' The language to use for addresses. ''; }; telephone = mkOption { default = null; type = types.nullOr types.str; description = '' The language to use for telephone numbers. ''; }; measurement = mkOption { default = null; type = types.nullOr types.str; description = '' The language to use for measurement values. ''; }; }; }; keyboardSubModule = types.submodule { options = { layout = mkOption { type = with types; nullOr str; default = if versionAtLeast config.home.stateVersion "19.09" then null else "us"; defaultText = literalExpression "null"; description = '' Keyboard layout. If null, then the system configuration will be used. This defaults to null for state version ≥ 19.09 and "us" otherwise. ''; }; model = mkOption { type = with types; nullOr str; default = null; example = "presario"; description = '' Keyboard model. ''; }; options = mkOption { type = types.listOf types.str; default = []; example = ["grp:caps_toggle" "grp_led:scroll"]; description = '' X keyboard options; layout switching goes here. ''; }; variant = mkOption { type = with types; nullOr str; default = if versionAtLeast config.home.stateVersion "19.09" then null else ""; defaultText = literalExpression "null"; example = "colemak"; description = '' X keyboard variant. If null, then the system configuration will be used. This defaults to null for state version ≥ 19.09 and "" otherwise. ''; }; }; }; in { meta.maintainers = [ maintainers.rycee ]; imports = [ (mkRemovedOptionModule [ "home" "sessionVariableSetter" ] '' Session variables are now always set through the shell. This is done automatically if the shell configuration is managed by Home Manager. If not, then you must source the ~/.nix-profile/etc/profile.d/hm-session-vars.sh file yourself. '') ]; options = { home.username = mkOption { type = types.str; defaultText = literalExpression '' "$USER" for state version < 20.09, undefined for state version ≥ 20.09 ''; example = "jane.doe"; description = "The user's username."; }; home.homeDirectory = mkOption { type = types.path; defaultText = literalExpression '' "$HOME" for state version < 20.09, undefined for state version ≥ 20.09 ''; apply = toString; example = "/home/jane.doe"; description = "The user's home directory. Must be an absolute path."; }; home.profileDirectory = mkOption { type = types.path; defaultText = "~/.nix-profile"; internal = true; readOnly = true; description = '' The profile directory where Home Manager generations are installed. ''; }; home.language = mkOption { type = languageSubModule; default = {}; description = "Language configuration."; }; home.keyboard = mkOption { type = types.nullOr keyboardSubModule; default = {}; description = '' Keyboard configuration. Set to null to disable Home Manager keyboard management. ''; }; home.sessionVariables = mkOption { default = {}; type = types.attrs; example = { EDITOR = "emacs"; GS_OPTIONS = "-sPAPERSIZE=a4"; }; description = '' Environment variables to always set at login. The values may refer to other environment variables using POSIX.2 style variable references. For example, a variable parameter may be referenced as $parameter or ''${parameter}. A default value foo may be given as per ''${parameter:-foo} and, similarly, an alternate value bar can be given as per ''${parameter:+bar}. Note, these variables may be set in any order so no session variable may have a runtime dependency on another session variable. In particular code like home.sessionVariables = { FOO = "Hello"; BAR = "$FOO World!"; }; may not work as expected. If you need to reference another session variable, then do so inside Nix instead. The above example then becomes home.sessionVariables = { FOO = "Hello"; BAR = "''${config.home.sessionVariables.FOO} World!"; }; ''; }; home.sessionPath = mkOption { type = with types; listOf str; default = [ ]; example = [ ".git/safe/../../bin" "\${xdg.configHome}/emacs/bin" "~/.local/bin" ]; description = "Extra directories to add to PATH."; }; home.sessionVariablesExtra = mkOption { type = types.lines; default = ""; internal = true; description = '' Extra configuration to add to the hm-session-vars.sh file. ''; }; home.packages = mkOption { type = types.listOf types.package; default = []; description = "The set of packages to appear in the user environment."; }; home.extraOutputsToInstall = mkOption { type = types.listOf types.str; default = []; example = [ "doc" "info" "devdoc" ]; description = '' List of additional package outputs of the packages home.packages that should be installed into the user environment. ''; }; home.path = mkOption { internal = true; description = "The derivation installing the user packages."; }; home.emptyActivationPath = mkOption { internal = true; default = false; type = types.bool; description = '' Whether the activation script should start with an empty PATH variable. When false then the user's PATH will be used. ''; }; home.activation = mkOption { type = hm.types.dagOf types.str; default = {}; example = literalExpression '' { myActivationAction = lib.hm.dag.entryAfter ["writeBoundary"] ''' $DRY_RUN_CMD ln -s $VERBOSE_ARG \ ''${builtins.toPath ./link-me-directly} $HOME '''; } ''; description = '' The activation scripts blocks to run when activating a Home Manager generation. Any entry here should be idempotent, meaning running twice or more times produces the same result as running it once. If the script block produces any observable side effect, such as writing or deleting files, then it must be placed after the special writeBoundary script block. Prior to the write boundary one can place script blocks that verifies, but does not modify, the state of the system and exits if an unexpected state is found. For example, the checkLinkTargets script block checks for collisions between non-managed files and files defined in home.file. A script block should respect the DRY_RUN variable, if it is set then the actions taken by the script should be logged to standard out and not actually performed. The variable DRY_RUN_CMD is set to echo if dry run is enabled. A script block should also respect the VERBOSE variable, and if set print information on standard out that may be useful for debugging any issue that may arise. The variable VERBOSE_ARG is set to if verbose output is enabled. ''; }; home.activationPackage = mkOption { internal = true; type = types.package; description = "The package containing the complete activation script."; }; home.extraActivationPath = mkOption { internal = true; type = types.listOf types.package; default = [ ]; description = '' Extra packages to add to PATH within the activation script. ''; }; home.extraBuilderCommands = mkOption { type = types.lines; default = ""; internal = true; description = '' Extra commands to run in the Home Manager generation builder. ''; }; home.extraProfileCommands = mkOption { type = types.lines; default = ""; internal = true; description = '' Extra commands to run in the Home Manager profile builder. ''; }; home.enableNixpkgsReleaseCheck = mkOption { type = types.bool; default = true; description = '' Determines whether to check for release version mismatch between Home Manager and Nixpkgs. Using mismatched versions is likely to cause errors and unexpected behavior. It is therefore highly recommended to use a release of Home Manager than corresponds with your chosen release of Nixpkgs. When this option is enabled and a mismatch is detected then a warning will be printed when the user configuration is being built. ''; }; }; config = { assertions = [ { assertion = config.home.username != ""; message = "Username could not be determined"; } { assertion = config.home.homeDirectory != ""; message = "Home directory could not be determined"; } ]; warnings = let hmRelease = fileContents ../.release; nixpkgsRelease = pkgs.lib.trivial.release; releaseMismatch = config.home.enableNixpkgsReleaseCheck && hmRelease != nixpkgsRelease; in optional releaseMismatch '' You are using Home Manager version ${hmRelease} and Nixpkgs version ${nixpkgsRelease}. Using mismatched versions is likely to cause errors and unexpected behavior. It is therefore highly recommended to use a release of Home Manager than corresponds with your chosen release of Nixpkgs. If you insist then you can disable this warning by adding home.enableNixpkgsReleaseCheck = false; to your configuration. ''; home.username = mkIf (versionOlder config.home.stateVersion "20.09") (mkDefault (builtins.getEnv "USER")); home.homeDirectory = mkIf (versionOlder config.home.stateVersion "20.09") (mkDefault (builtins.getEnv "HOME")); home.profileDirectory = if config.submoduleSupport.enable && config.submoduleSupport.externalPackageInstall then "/etc/profiles/per-user/${cfg.username}" else cfg.homeDirectory + "/.nix-profile"; home.sessionVariables = let maybeSet = n: v: optionalAttrs (v != null) { ${n} = v; }; in (maybeSet "LANG" cfg.language.base) // (maybeSet "LC_CTYPE" cfg.language.ctype) // (maybeSet "LC_NUMERIC" cfg.language.numeric) // (maybeSet "LC_TIME" cfg.language.time) // (maybeSet "LC_COLLATE" cfg.language.collate) // (maybeSet "LC_MONETARY" cfg.language.monetary) // (maybeSet "LC_MESSAGES" cfg.language.messages) // (maybeSet "LC_PAPER" cfg.language.paper) // (maybeSet "LC_NAME" cfg.language.name) // (maybeSet "LC_ADDRESS" cfg.language.address) // (maybeSet "LC_TELEPHONE" cfg.language.telephone) // (maybeSet "LC_MEASUREMENT" cfg.language.measurement); home.packages = [ # Provide a file holding all session variables. ( pkgs.writeTextFile { name = "hm-session-vars.sh"; destination = "/etc/profile.d/hm-session-vars.sh"; text = '' # Only source this once. if [ -n "$__HM_SESS_VARS_SOURCED" ]; then return; fi export __HM_SESS_VARS_SOURCED=1 ${config.lib.shell.exportAll cfg.sessionVariables} '' + lib.optionalString (cfg.sessionPath != [ ]) '' export PATH="$PATH''${PATH:+:}${concatStringsSep ":" cfg.sessionPath}" '' + cfg.sessionVariablesExtra; } ) ]; # A dummy entry acting as a boundary between the activation # script's "check" and the "write" phases. home.activation.writeBoundary = hm.dag.entryAnywhere ""; # Install packages to the user environment. # # Note, sometimes our target may not allow modification of the Nix # store and then we cannot rely on `nix-env -i`. This is the case, # for example, if we are running as a NixOS module and building a # virtual machine. Then we must instead rely on an external # mechanism for installing packages, which in NixOS is provided by # the `users.users..packages` option. The activation # command is still needed since some modules need to run their # activation commands after the packages are guaranteed to be # installed. # # In case the user has moved from a user-install of Home Manager # to a submodule managed one we attempt to uninstall the # `home-manager-path` package if it is installed. home.activation.installPackages = hm.dag.entryAfter ["writeBoundary"] ( if config.submoduleSupport.externalPackageInstall then '' if nix-env -q | grep '^home-manager-path$'; then $DRY_RUN_CMD nix-env -e home-manager-path fi '' else '' if ! $DRY_RUN_CMD nix-env -i ${cfg.path} ; then cat <