2017-01-07 18:16:26 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
cfg = config.home;
|
|
|
|
|
2017-12-02 18:15:13 +00:00
|
|
|
dag = config.lib.dag;
|
|
|
|
|
2017-01-07 18:16:26 +00:00
|
|
|
languageSubModule = types.submodule {
|
|
|
|
options = {
|
|
|
|
base = mkOption {
|
2017-02-12 00:18:37 +00:00
|
|
|
default = null;
|
|
|
|
type = types.nullOr types.str;
|
2017-01-07 18:16:26 +00:00
|
|
|
description = ''
|
|
|
|
The language to use unless overridden by a more specific option.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
address = mkOption {
|
|
|
|
default = null;
|
|
|
|
type = types.nullOr types.str;
|
|
|
|
description = ''
|
|
|
|
The language to use for addresses.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
monetary = mkOption {
|
|
|
|
default = null;
|
|
|
|
type = types.nullOr types.str;
|
|
|
|
description = ''
|
|
|
|
The language to use for formatting currencies and money amounts.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
paper = mkOption {
|
|
|
|
default = null;
|
|
|
|
type = types.nullOr types.str;
|
|
|
|
description = ''
|
|
|
|
The language to use for paper sizes.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
time = mkOption {
|
|
|
|
default = null;
|
|
|
|
type = types.nullOr types.str;
|
|
|
|
description = ''
|
|
|
|
The language to use for formatting times.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
keyboardSubModule = types.submodule {
|
|
|
|
options = {
|
|
|
|
layout = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = "us";
|
|
|
|
description = ''
|
|
|
|
Keyboard layout.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
model = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = "pc104";
|
|
|
|
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 = types.str;
|
|
|
|
default = "";
|
|
|
|
example = "colemak";
|
|
|
|
description = ''
|
|
|
|
X keyboard variant.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
{
|
2017-09-26 21:40:31 +00:00
|
|
|
meta.maintainers = [ maintainers.rycee ];
|
|
|
|
|
2017-01-07 18:16:26 +00:00
|
|
|
options = {
|
2017-10-05 22:15:22 +00:00
|
|
|
home.username = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
defaultText = "$USER";
|
2017-12-13 15:31:35 +00:00
|
|
|
description = "The user's username.";
|
2017-10-05 22:15:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
home.homeDirectory = mkOption {
|
|
|
|
type = types.path;
|
|
|
|
defaultText = "$HOME";
|
2017-12-13 15:31:35 +00:00
|
|
|
description = "The user's home directory.";
|
2017-10-05 22:15:22 +00:00
|
|
|
};
|
|
|
|
|
2017-01-07 18:16:26 +00:00
|
|
|
home.language = mkOption {
|
|
|
|
type = languageSubModule;
|
|
|
|
default = {};
|
|
|
|
description = "Language configuration.";
|
|
|
|
};
|
|
|
|
|
|
|
|
home.keyboard = mkOption {
|
|
|
|
type = keyboardSubModule;
|
|
|
|
default = {};
|
|
|
|
description = "Keyboard configuration.";
|
|
|
|
};
|
|
|
|
|
|
|
|
home.sessionVariables = mkOption {
|
|
|
|
default = {};
|
|
|
|
type = types.attrs;
|
2017-01-15 19:03:55 +00:00
|
|
|
example = { EDITOR = "emacs"; GS_OPTIONS = "-sPAPERSIZE=a4"; };
|
2017-01-16 22:54:45 +00:00
|
|
|
description = ''
|
|
|
|
Environment variables to always set at login.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
home.sessionVariableSetter = mkOption {
|
2017-01-17 00:13:31 +00:00
|
|
|
default = "bash";
|
2017-08-15 11:54:33 +00:00
|
|
|
type = types.enum [ "pam" "bash" "zsh" ];
|
2017-01-17 00:13:31 +00:00
|
|
|
example = "pam";
|
2017-01-16 22:54:45 +00:00
|
|
|
description = ''
|
|
|
|
Identifies the module that should set the session variables.
|
|
|
|
</para><para>
|
|
|
|
If "bash" is set then <varname>config.bash.enable</varname>
|
|
|
|
must also be enabled.
|
|
|
|
</para><para>
|
|
|
|
If "pam" is set then PAM must be used to set the system
|
2017-01-17 00:13:31 +00:00
|
|
|
environment. Also mind that typical environment variables
|
|
|
|
might not be set by the time PAM starts up.
|
2017-01-16 22:54:45 +00:00
|
|
|
'';
|
2017-01-07 18:16:26 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
home.packages = mkOption {
|
|
|
|
type = types.listOf types.package;
|
|
|
|
default = [];
|
|
|
|
description = "The set of packages to appear in the user environment.";
|
|
|
|
};
|
|
|
|
|
2017-10-15 13:58:34 +00:00
|
|
|
home.extraOutputsToInstall = mkOption {
|
|
|
|
type = types.listOf types.str;
|
|
|
|
default = [];
|
|
|
|
example = [ "doc" "info" "devdoc" ];
|
|
|
|
description = ''
|
|
|
|
List of additional package outputs of the packages
|
|
|
|
<varname>home.packages</varname> that should be installed into
|
|
|
|
the user environment.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2017-01-07 18:16:26 +00:00
|
|
|
home.path = mkOption {
|
|
|
|
internal = true;
|
|
|
|
description = "The derivation installing the user packages.";
|
|
|
|
};
|
|
|
|
|
2017-12-11 16:03:34 +00:00
|
|
|
home.emptyActivationPath = mkOption {
|
|
|
|
internal = true;
|
|
|
|
default = false;
|
|
|
|
type = types.bool;
|
|
|
|
description = ''
|
|
|
|
Whether the activation script should start with an empty
|
|
|
|
<envvar>PATH</envvar> variable. When <literal>false</literal>
|
|
|
|
then the user's <envvar>PATH</envvar> will be used.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2017-01-07 18:16:26 +00:00
|
|
|
home.activation = mkOption {
|
|
|
|
internal = true;
|
|
|
|
default = {};
|
|
|
|
type = types.attrs;
|
2017-01-15 23:06:27 +00:00
|
|
|
description = ''
|
|
|
|
Activation scripts for the home environment.
|
|
|
|
</para><para>
|
|
|
|
Any script should respect the <varname>DRY_RUN</varname>
|
|
|
|
variable, if it is set then no actual action should be taken.
|
|
|
|
The variable <varname>DRY_RUN_CMD</varname> is set to
|
|
|
|
<code>echo</code> if dry run is enabled. Thus, many cases you
|
|
|
|
can use the idiom <code>$DRY_RUN_CMD rm -rf /</code>.
|
|
|
|
'';
|
2017-01-07 18:16:26 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
home.activationPackage = mkOption {
|
|
|
|
internal = true;
|
|
|
|
type = types.package;
|
|
|
|
description = "The package containing the complete activation script.";
|
|
|
|
};
|
2017-10-20 19:10:44 +00:00
|
|
|
|
|
|
|
home.extraBuilderCommands = mkOption {
|
|
|
|
type = types.lines;
|
|
|
|
default = "";
|
|
|
|
internal = true;
|
|
|
|
description = ''
|
|
|
|
Extra commands to run in the Home Manager generation builder.
|
|
|
|
'';
|
|
|
|
};
|
2017-01-07 18:16:26 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
config = {
|
2017-10-05 22:15:22 +00:00
|
|
|
assertions = [
|
|
|
|
{
|
|
|
|
assertion = config.home.username != "";
|
|
|
|
message = "Username could not be determined";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
assertion = config.home.homeDirectory != "";
|
|
|
|
message = "Home directory could not be determined";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
|
|
|
home.username = mkDefault (builtins.getEnv "USER");
|
|
|
|
home.homeDirectory = mkDefault (builtins.getEnv "HOME");
|
|
|
|
|
2017-01-07 18:16:26 +00:00
|
|
|
home.sessionVariables =
|
|
|
|
let
|
|
|
|
maybeSet = name: value:
|
|
|
|
listToAttrs (optional (value != null) { inherit name value; });
|
|
|
|
in
|
|
|
|
(maybeSet "LANG" cfg.language.base)
|
|
|
|
//
|
|
|
|
(maybeSet "LC_ADDRESS" cfg.language.address)
|
|
|
|
//
|
|
|
|
(maybeSet "LC_MONETARY" cfg.language.monetary)
|
|
|
|
//
|
|
|
|
(maybeSet "LC_PAPER" cfg.language.paper)
|
|
|
|
//
|
|
|
|
(maybeSet "LC_TIME" cfg.language.time);
|
|
|
|
|
2017-05-03 22:36:39 +00:00
|
|
|
# A dummy entry acting as a boundary between the activation
|
|
|
|
# script's "check" and the "write" phases.
|
2017-12-02 18:15:13 +00:00
|
|
|
home.activation.writeBoundary = dag.entryAnywhere "";
|
2017-05-03 22:36:39 +00:00
|
|
|
|
2017-12-02 18:15:13 +00:00
|
|
|
home.activation.installPackages = dag.entryAfter ["writeBoundary"] ''
|
2017-05-03 22:36:39 +00:00
|
|
|
$DRY_RUN_CMD nix-env -i ${cfg.path}
|
|
|
|
'';
|
2017-01-07 18:16:26 +00:00
|
|
|
|
|
|
|
home.activationPackage =
|
|
|
|
let
|
2017-05-03 22:36:39 +00:00
|
|
|
mkCmd = res: ''
|
2017-05-14 14:17:38 +00:00
|
|
|
noteEcho Activating ${res.name}
|
2017-05-03 22:36:39 +00:00
|
|
|
${res.data}
|
|
|
|
'';
|
2017-12-02 18:15:13 +00:00
|
|
|
sortedCommands = dag.topoSort cfg.activation;
|
2017-01-07 18:16:26 +00:00
|
|
|
activationCmds =
|
2017-05-03 22:36:39 +00:00
|
|
|
if sortedCommands ? result then
|
|
|
|
concatStringsSep "\n" (map mkCmd sortedCommands.result)
|
|
|
|
else
|
|
|
|
abort ("Dependency cycle in activation script: "
|
|
|
|
+ builtins.toJSON sortedCommands);
|
2017-01-07 18:16:26 +00:00
|
|
|
|
2017-10-19 20:42:35 +00:00
|
|
|
# Programs that always should be available on the activation
|
|
|
|
# script's PATH.
|
|
|
|
activationBinPaths = lib.makeBinPath [
|
|
|
|
pkgs.bash
|
|
|
|
pkgs.coreutils
|
2017-10-20 12:02:05 +00:00
|
|
|
pkgs.diffutils # For `cmp` and `diff`.
|
|
|
|
pkgs.findutils
|
|
|
|
pkgs.gnugrep
|
|
|
|
pkgs.gnused
|
|
|
|
pkgs.ncurses # For `tput`.
|
|
|
|
pkgs.nix
|
2017-12-11 16:03:34 +00:00
|
|
|
]
|
|
|
|
+ optionalString (!cfg.emptyActivationPath) "\${PATH:+:}$PATH";
|
2017-10-19 20:42:35 +00:00
|
|
|
|
2017-11-06 09:28:48 +00:00
|
|
|
activationScript = pkgs.writeScript "activation-script" ''
|
2017-01-07 18:16:26 +00:00
|
|
|
#!${pkgs.stdenv.shell}
|
|
|
|
|
2017-03-25 20:48:17 +00:00
|
|
|
set -eu
|
|
|
|
set -o pipefail
|
2017-01-16 19:26:42 +00:00
|
|
|
|
2017-12-11 16:03:34 +00:00
|
|
|
export PATH="${activationBinPaths}"
|
2017-05-15 21:50:16 +00:00
|
|
|
|
2017-05-14 14:17:38 +00:00
|
|
|
. ${./lib-bash/color-echo.sh}
|
|
|
|
|
|
|
|
${builtins.readFile ./lib-bash/activation-init.sh}
|
2017-01-15 23:06:27 +00:00
|
|
|
|
2017-01-07 18:16:26 +00:00
|
|
|
${activationCmds}
|
|
|
|
'';
|
|
|
|
in
|
|
|
|
pkgs.stdenv.mkDerivation {
|
2017-01-08 21:06:53 +00:00
|
|
|
name = "home-manager-generation";
|
2017-01-07 18:16:26 +00:00
|
|
|
|
2017-11-06 09:28:49 +00:00
|
|
|
buildCommand = ''
|
2017-11-06 09:28:48 +00:00
|
|
|
mkdir -p $out
|
|
|
|
|
|
|
|
cp ${activationScript} $out/activate
|
2017-01-08 21:06:53 +00:00
|
|
|
|
|
|
|
substituteInPlace $out/activate \
|
|
|
|
--subst-var-by GENERATION_DIR $out
|
|
|
|
|
2017-10-05 19:38:46 +00:00
|
|
|
ln -s ${config.home-files} $out/home-files
|
2017-08-26 22:13:26 +00:00
|
|
|
ln -s ${cfg.path} $out/home-path
|
2017-10-20 19:10:44 +00:00
|
|
|
|
|
|
|
${cfg.extraBuilderCommands}
|
2017-01-07 18:16:26 +00:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
home.path = pkgs.buildEnv {
|
|
|
|
name = "home-manager-path";
|
|
|
|
|
|
|
|
paths = cfg.packages;
|
2017-10-15 13:58:34 +00:00
|
|
|
inherit (cfg) extraOutputsToInstall;
|
2017-01-07 18:16:26 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Environment of packages installed through home-manager";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|