mirror of
https://github.com/nix-community/nix-on-droid.git
synced 2025-11-08 19:46:07 +01:00
This will allow extending `lib` using: ``` _modules.args.lib = ... ``` Without this the extended lib is not available to home-manager modules.
132 lines
3.8 KiB
Nix
132 lines
3.8 KiB
Nix
# Copyright (c) 2019-2022, see AUTHORS. Licensed under MIT License, see LICENSE.
|
|
|
|
{ config, lib, pkgs, home-manager-path, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.home-manager;
|
|
|
|
extendedLib = import (home-manager-path + "/modules/lib/stdlib-extended.nix") lib;
|
|
|
|
hmModule = types.submoduleWith {
|
|
specialArgs = { lib = extendedLib; } // cfg.extraSpecialArgs;
|
|
modules = [
|
|
({ name, ... }: {
|
|
imports = import (home-manager-path + "/modules/modules.nix") {
|
|
inherit pkgs;
|
|
lib = extendedLib;
|
|
useNixpkgsModule = !cfg.useGlobalPkgs;
|
|
};
|
|
|
|
config = {
|
|
submoduleSupport.enable = true;
|
|
submoduleSupport.externalPackageInstall = cfg.useUserPackages;
|
|
|
|
home.username = config.user.userName;
|
|
home.homeDirectory = config.user.home;
|
|
};
|
|
})
|
|
] ++ cfg.sharedModules;
|
|
};
|
|
in
|
|
|
|
{
|
|
|
|
###### interface
|
|
|
|
options = {
|
|
|
|
home-manager = {
|
|
backupFileExtension = mkOption {
|
|
type = types.nullOr types.str;
|
|
default = null;
|
|
example = "backup";
|
|
description = ''
|
|
On activation move existing files by appending the given
|
|
file extension rather than exiting with an error.
|
|
'';
|
|
};
|
|
|
|
config = mkOption {
|
|
type = types.nullOr hmModule;
|
|
default = null;
|
|
# Prevent the entire submodule being included in the documentation.
|
|
visible = "shallow";
|
|
description = ''
|
|
Home Manager configuration, see
|
|
<link xlink:href="https://nix-community.github.io/home-manager/options.html" />.
|
|
'';
|
|
};
|
|
|
|
extraSpecialArgs = mkOption {
|
|
type = types.attrs;
|
|
default = { };
|
|
example = literalExpression "{ inherit emacs-overlay; }";
|
|
description = ''
|
|
Extra <literal>specialArgs</literal> passed to Home Manager. This
|
|
option can be used to pass additional arguments to all modules.
|
|
'';
|
|
};
|
|
|
|
sharedModules = mkOption {
|
|
type = with types; listOf raw;
|
|
default = [ ];
|
|
example = literalExpression "[ { home.packages = [ nixpkgs-fmt ]; } ]";
|
|
description = ''
|
|
Extra modules.
|
|
'';
|
|
};
|
|
|
|
useGlobalPkgs = mkEnableOption ''
|
|
using the system configuration's <literal>pkgs</literal>
|
|
argument in Home Manager. This disables the Home Manager
|
|
options <option>nixpkgs.*</option>
|
|
'';
|
|
|
|
useUserPackages = mkEnableOption ''
|
|
installation of user packages through the
|
|
<option>environment.packages</option> option.
|
|
'' // {
|
|
default = versionAtLeast config.system.stateVersion "20.09";
|
|
};
|
|
};
|
|
|
|
};
|
|
|
|
|
|
###### implementation
|
|
|
|
config = mkIf (cfg.config != null) {
|
|
|
|
inherit (cfg.config) assertions warnings;
|
|
|
|
build = {
|
|
activationBefore = mkIf cfg.useUserPackages {
|
|
setPriorityHomeManagerPath = ''
|
|
if nix-env -q | grep '^home-manager-path$'; then
|
|
$DRY_RUN_CMD nix-env $VERBOSE_ARG --set-flag priority 120 home-manager-path
|
|
fi
|
|
'';
|
|
};
|
|
|
|
activationAfter.homeManager = concatStringsSep " " (
|
|
optional
|
|
(cfg.backupFileExtension != null)
|
|
"HOME_MANAGER_BACKUP_EXT='${cfg.backupFileExtension}'"
|
|
++ [ "${cfg.config.home.activationPackage}/activate" ]
|
|
);
|
|
};
|
|
|
|
environment.packages = mkIf cfg.useUserPackages cfg.config.home.packages;
|
|
|
|
# home-manager has a quirk redefining the profile location
|
|
# to "/etc/profiles/per-user/${cfg.username}" if useUserPackages is on.
|
|
# https://github.com/nix-community/home-manager/blob/0006da1381b87844c944fe8b925ec864ccf19348/modules/home-environment.nix#L414
|
|
# Fortunately, it's not that hard to us to workaround with just a symlink.
|
|
environment.etc = mkIf cfg.useUserPackages {
|
|
"profiles/per-user/${config.user.userName}".source = "${config.user.home}/.nix-profile";
|
|
};
|
|
|
|
};
|
|
}
|