2017-01-07 19:16:26 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
2017-09-21 13:19:29 +02:00
|
|
|
with import ./lib/dag.nix { inherit lib; };
|
2017-01-07 19:16:26 +01:00
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
cfg = config.home;
|
|
|
|
|
|
|
|
languageSubModule = types.submodule {
|
|
|
|
options = {
|
|
|
|
base = mkOption {
|
2017-02-12 01:18:37 +01:00
|
|
|
default = null;
|
|
|
|
type = types.nullOr types.str;
|
2017-01-07 19:16:26 +01: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 23:40:31 +02:00
|
|
|
meta.maintainers = [ maintainers.rycee ];
|
|
|
|
|
2017-01-07 19:16:26 +01:00
|
|
|
options = {
|
2017-10-06 00:15:22 +02:00
|
|
|
home.username = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
defaultText = "$USER";
|
|
|
|
readOnly = true;
|
|
|
|
description = "The user's username";
|
|
|
|
};
|
|
|
|
|
|
|
|
home.homeDirectory = mkOption {
|
|
|
|
type = types.path;
|
|
|
|
defaultText = "$HOME";
|
|
|
|
readOnly = true;
|
|
|
|
description = "The user's home directory";
|
|
|
|
};
|
|
|
|
|
2017-01-07 19:16:26 +01: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 20:03:55 +01:00
|
|
|
example = { EDITOR = "emacs"; GS_OPTIONS = "-sPAPERSIZE=a4"; };
|
2017-01-16 23:54:45 +01:00
|
|
|
description = ''
|
|
|
|
Environment variables to always set at login.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
home.sessionVariableSetter = mkOption {
|
2017-01-17 01:13:31 +01:00
|
|
|
default = "bash";
|
2017-08-15 13:54:33 +02:00
|
|
|
type = types.enum [ "pam" "bash" "zsh" ];
|
2017-01-17 01:13:31 +01:00
|
|
|
example = "pam";
|
2017-01-16 23:54:45 +01: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 01:13:31 +01:00
|
|
|
environment. Also mind that typical environment variables
|
|
|
|
might not be set by the time PAM starts up.
|
2017-01-16 23:54:45 +01:00
|
|
|
'';
|
2017-01-07 19:16:26 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
home.packages = mkOption {
|
|
|
|
type = types.listOf types.package;
|
|
|
|
default = [];
|
|
|
|
description = "The set of packages to appear in the user environment.";
|
|
|
|
};
|
|
|
|
|
2017-10-15 15:58:34 +02: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 19:16:26 +01:00
|
|
|
home.path = mkOption {
|
|
|
|
internal = true;
|
|
|
|
description = "The derivation installing the user packages.";
|
|
|
|
};
|
|
|
|
|
|
|
|
home.activation = mkOption {
|
|
|
|
internal = true;
|
|
|
|
default = {};
|
|
|
|
type = types.attrs;
|
2017-01-16 00:06:27 +01: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 19:16:26 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
home.activationPackage = mkOption {
|
|
|
|
internal = true;
|
|
|
|
type = types.package;
|
|
|
|
description = "The package containing the complete activation script.";
|
|
|
|
};
|
2017-10-20 21:10:44 +02:00
|
|
|
|
|
|
|
home.extraBuilderCommands = mkOption {
|
|
|
|
type = types.lines;
|
|
|
|
default = "";
|
|
|
|
internal = true;
|
|
|
|
description = ''
|
|
|
|
Extra commands to run in the Home Manager generation builder.
|
|
|
|
'';
|
|
|
|
};
|
2017-01-07 19:16:26 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
config = {
|
2017-10-06 00:15:22 +02: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 19:16:26 +01: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-04 00:36:39 +02:00
|
|
|
# A dummy entry acting as a boundary between the activation
|
|
|
|
# script's "check" and the "write" phases.
|
|
|
|
home.activation.writeBoundary = dagEntryAnywhere "";
|
|
|
|
|
|
|
|
home.activation.installPackages = dagEntryAfter ["writeBoundary"] ''
|
|
|
|
$DRY_RUN_CMD nix-env -i ${cfg.path}
|
|
|
|
'';
|
2017-01-07 19:16:26 +01:00
|
|
|
|
|
|
|
home.activationPackage =
|
|
|
|
let
|
2017-05-04 00:36:39 +02:00
|
|
|
mkCmd = res: ''
|
2017-05-14 16:17:38 +02:00
|
|
|
noteEcho Activating ${res.name}
|
2017-05-04 00:36:39 +02:00
|
|
|
${res.data}
|
|
|
|
'';
|
|
|
|
sortedCommands = dagTopoSort cfg.activation;
|
2017-01-07 19:16:26 +01:00
|
|
|
activationCmds =
|
2017-05-04 00:36:39 +02:00
|
|
|
if sortedCommands ? result then
|
|
|
|
concatStringsSep "\n" (map mkCmd sortedCommands.result)
|
|
|
|
else
|
|
|
|
abort ("Dependency cycle in activation script: "
|
|
|
|
+ builtins.toJSON sortedCommands);
|
2017-01-07 19:16:26 +01:00
|
|
|
|
2017-10-19 22:42:35 +02:00
|
|
|
# Programs that always should be available on the activation
|
|
|
|
# script's PATH.
|
|
|
|
activationBinPaths = lib.makeBinPath [
|
|
|
|
pkgs.bash
|
|
|
|
pkgs.coreutils
|
2017-10-20 14:02:05 +02:00
|
|
|
pkgs.diffutils # For `cmp` and `diff`.
|
|
|
|
pkgs.findutils
|
|
|
|
pkgs.gnugrep
|
|
|
|
pkgs.gnused
|
|
|
|
pkgs.ncurses # For `tput`.
|
|
|
|
pkgs.nix
|
2017-10-19 22:42:35 +02:00
|
|
|
];
|
|
|
|
|
2017-11-06 10:28:48 +01:00
|
|
|
activationScript = pkgs.writeScript "activation-script" ''
|
2017-01-07 19:16:26 +01:00
|
|
|
#!${pkgs.stdenv.shell}
|
|
|
|
|
2017-03-25 21:48:17 +01:00
|
|
|
set -eu
|
|
|
|
set -o pipefail
|
2017-01-16 20:26:42 +01:00
|
|
|
|
2017-10-19 22:42:35 +02:00
|
|
|
export PATH="${activationBinPaths}:$PATH"
|
2017-05-15 23:50:16 +02:00
|
|
|
|
2017-05-14 16:17:38 +02:00
|
|
|
. ${./lib-bash/color-echo.sh}
|
|
|
|
|
|
|
|
${builtins.readFile ./lib-bash/activation-init.sh}
|
2017-01-16 00:06:27 +01:00
|
|
|
|
2017-01-07 19:16:26 +01:00
|
|
|
${activationCmds}
|
|
|
|
'';
|
|
|
|
in
|
|
|
|
pkgs.stdenv.mkDerivation {
|
2017-01-08 22:06:53 +01:00
|
|
|
name = "home-manager-generation";
|
2017-01-07 19:16:26 +01:00
|
|
|
|
2017-11-06 10:28:49 +01:00
|
|
|
buildCommand = ''
|
2017-11-06 10:28:48 +01:00
|
|
|
mkdir -p $out
|
|
|
|
|
|
|
|
cp ${activationScript} $out/activate
|
2017-01-08 22:06:53 +01:00
|
|
|
|
|
|
|
substituteInPlace $out/activate \
|
|
|
|
--subst-var-by GENERATION_DIR $out
|
|
|
|
|
2017-10-05 21:38:46 +02:00
|
|
|
ln -s ${config.home-files} $out/home-files
|
2017-08-27 00:13:26 +02:00
|
|
|
ln -s ${cfg.path} $out/home-path
|
2017-10-20 21:10:44 +02:00
|
|
|
|
|
|
|
${cfg.extraBuilderCommands}
|
2017-01-07 19:16:26 +01:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
home.path = pkgs.buildEnv {
|
|
|
|
name = "home-manager-path";
|
|
|
|
|
|
|
|
paths = cfg.packages;
|
2017-10-15 15:58:34 +02:00
|
|
|
inherit (cfg) extraOutputsToInstall;
|
2017-01-07 19:16:26 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Environment of packages installed through home-manager";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|