2017-01-07 19:16:26 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
2017-05-04 00:36:39 +02:00
|
|
|
with import ./lib/dag.nix;
|
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
|
|
|
|
|
|
|
|
{
|
|
|
|
options = {
|
|
|
|
home.file = mkOption {
|
|
|
|
description = "Attribute set of files to link into the user home.";
|
|
|
|
default = {};
|
|
|
|
type = types.loaOf (types.submodule (
|
|
|
|
{ name, config, ... }: {
|
|
|
|
options = {
|
|
|
|
target = mkOption {
|
|
|
|
type = types.str;
|
2017-01-15 20:03:55 +01:00
|
|
|
description = ''
|
|
|
|
Path to target file relative to <envar>HOME</envar>.
|
|
|
|
'';
|
2017-01-07 19:16:26 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
text = mkOption {
|
|
|
|
default = null;
|
|
|
|
type = types.nullOr types.lines;
|
|
|
|
description = "Text of the file.";
|
|
|
|
};
|
|
|
|
|
|
|
|
source = mkOption {
|
|
|
|
type = types.path;
|
2017-02-21 21:41:05 +01:00
|
|
|
description = ''
|
2017-03-10 23:56:43 +01:00
|
|
|
Path of the source file. The file name must not start
|
|
|
|
with a period since Nix will not allow such names in
|
|
|
|
the Nix store.
|
|
|
|
</para><para>
|
|
|
|
This may refer to a directory.
|
2017-02-21 21:41:05 +01:00
|
|
|
'';
|
2017-01-07 19:16:26 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
mode = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = "444";
|
|
|
|
description = "The permissions to apply to the file.";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = {
|
|
|
|
target = mkDefault name;
|
|
|
|
source = mkIf (config.text != null) (
|
|
|
|
let name' = "user-etc-" + baseNameOf name;
|
|
|
|
in mkDefault (pkgs.writeText name' config.text)
|
|
|
|
);
|
|
|
|
};
|
|
|
|
})
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
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.";
|
|
|
|
};
|
|
|
|
|
|
|
|
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.";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = {
|
2017-02-21 21:41:05 +01:00
|
|
|
assertions = [
|
|
|
|
(let
|
|
|
|
badFiles =
|
2017-02-21 21:55:07 +01:00
|
|
|
filter (f: hasPrefix "." (baseNameOf f))
|
|
|
|
(map (v: toString v.source)
|
2017-02-21 21:41:05 +01:00
|
|
|
(attrValues cfg.file));
|
|
|
|
badFilesStr = toString badFiles;
|
|
|
|
in
|
|
|
|
{
|
|
|
|
assertion = badFiles == [];
|
|
|
|
message = "Source file names must not start with '.': ${badFilesStr}";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
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 "";
|
|
|
|
|
2017-05-06 00:44:00 +02:00
|
|
|
# This verifies that the links we are about to create will not
|
|
|
|
# overwrite an existing file.
|
|
|
|
home.activation.checkLinkTargets = dagEntryBefore ["writeBoundary"] (
|
|
|
|
let
|
|
|
|
pattern = "-home-manager-files/";
|
|
|
|
check = pkgs.writeText "check" ''
|
2017-05-14 16:17:38 +02:00
|
|
|
. ${./lib-bash/color-echo.sh}
|
|
|
|
|
2017-05-06 00:44:00 +02:00
|
|
|
newGenFiles="$1"
|
|
|
|
shift
|
|
|
|
for sourcePath in "$@" ; do
|
|
|
|
relativePath="''${sourcePath#$newGenFiles/}"
|
|
|
|
targetPath="$HOME/$relativePath"
|
|
|
|
if [[ -e "$targetPath" \
|
2017-07-06 18:31:40 +02:00
|
|
|
&& ! "$(readlink "$targetPath")" =~ "${pattern}" ]] ; then
|
2017-05-14 16:17:38 +02:00
|
|
|
errorEcho "Existing file '$targetPath' is in the way"
|
2017-05-06 00:44:00 +02:00
|
|
|
collision=1
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
if [[ -v collision ]] ; then
|
2017-05-14 16:17:38 +02:00
|
|
|
errorEcho "Please move the above files and try again"
|
2017-05-06 00:44:00 +02:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
'';
|
|
|
|
in
|
|
|
|
''
|
2017-05-14 14:01:10 +02:00
|
|
|
function checkNewGenCollision() {
|
|
|
|
local newGenFiles
|
|
|
|
newGenFiles="$(readlink -e "$newGenPath/home-files")"
|
|
|
|
find "$newGenFiles" -type f -print0 -or -type l -print0 \
|
|
|
|
| xargs -0 bash ${check} "$newGenFiles"
|
|
|
|
}
|
|
|
|
|
|
|
|
checkNewGenCollision || exit 1
|
2017-05-06 00:44:00 +02:00
|
|
|
''
|
|
|
|
);
|
|
|
|
|
2017-05-04 00:36:39 +02:00
|
|
|
home.activation.linkGeneration = dagEntryAfter ["writeBoundary"] (
|
2017-01-07 19:16:26 +01:00
|
|
|
let
|
2017-06-29 01:03:39 +02:00
|
|
|
pattern = "-home-manager-files/";
|
|
|
|
|
2017-01-07 19:16:26 +01:00
|
|
|
link = pkgs.writeText "link" ''
|
2017-01-08 22:06:53 +01:00
|
|
|
newGenFiles="$1"
|
|
|
|
shift
|
2017-01-07 19:16:26 +01:00
|
|
|
for sourcePath in "$@" ; do
|
2017-03-10 23:56:43 +01:00
|
|
|
relativePath="''${sourcePath#$newGenFiles/}"
|
2017-01-08 22:06:53 +01:00
|
|
|
targetPath="$HOME/$relativePath"
|
2017-01-21 12:27:50 +01:00
|
|
|
$DRY_RUN_CMD mkdir -p $VERBOSE_ARG "$(dirname "$targetPath")"
|
2017-03-10 23:56:43 +01:00
|
|
|
$DRY_RUN_CMD ln -nsf $VERBOSE_ARG "$sourcePath" "$targetPath"
|
2017-01-07 19:16:26 +01:00
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
|
|
|
cleanup = pkgs.writeText "cleanup" ''
|
2017-06-29 01:03:39 +02:00
|
|
|
. ${./lib-bash/color-echo.sh}
|
|
|
|
|
2017-01-08 22:06:53 +01:00
|
|
|
newGenFiles="$1"
|
|
|
|
oldGenFiles="$2"
|
|
|
|
shift 2
|
2017-01-07 19:16:26 +01:00
|
|
|
for sourcePath in "$@" ; do
|
2017-03-10 23:56:43 +01:00
|
|
|
relativePath="''${sourcePath#$oldGenFiles/}"
|
2017-01-08 22:06:53 +01:00
|
|
|
targetPath="$HOME/$relativePath"
|
2017-03-10 23:56:43 +01:00
|
|
|
if [[ -e "$newGenFiles/$relativePath" ]] ; then
|
2017-02-09 22:32:09 +01:00
|
|
|
$VERBOSE_ECHO "Checking $targetPath exists"
|
2017-07-22 00:23:36 +02:00
|
|
|
elif [[ ! "$(readlink "$targetPath")" =~ "${pattern}" ]] ; then
|
2017-06-29 01:03:39 +02:00
|
|
|
warnEcho "Path '$targetPath' not link into Home Manager generation. Skipping delete."
|
2017-01-07 19:16:26 +01:00
|
|
|
else
|
2017-02-09 22:32:09 +01:00
|
|
|
echo "Checking $targetPath gone (deleting)"
|
2017-01-21 12:27:50 +01:00
|
|
|
$DRY_RUN_CMD rm $VERBOSE_ARG "$targetPath"
|
2017-07-22 00:18:31 +02:00
|
|
|
targetDir="$(dirname "$targetPath")"
|
|
|
|
|
|
|
|
# Recursively remove the containing directory. We only
|
|
|
|
# do this if the containing folder is not $HOME since
|
|
|
|
# running rmdir on $HOME will result in a harmless but
|
|
|
|
# unpleasant error message.
|
|
|
|
if [[ "$targetDir" != "$HOME" ]] ; then
|
|
|
|
$DRY_RUN_CMD rmdir $VERBOSE_ARG \
|
|
|
|
-p --ignore-fail-on-non-empty \
|
|
|
|
"$targetDir"
|
|
|
|
fi
|
2017-01-07 19:16:26 +01:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
in
|
|
|
|
''
|
2017-01-08 22:06:53 +01:00
|
|
|
function linkNewGen() {
|
|
|
|
local newGenFiles
|
|
|
|
newGenFiles="$(readlink -e "$newGenPath/home-files")"
|
2017-03-10 23:56:43 +01:00
|
|
|
find "$newGenFiles" -type f -print0 -or -type l -print0 \
|
2017-01-08 22:06:53 +01:00
|
|
|
| xargs -0 bash ${link} "$newGenFiles"
|
|
|
|
}
|
|
|
|
|
|
|
|
function cleanOldGen() {
|
2017-03-29 00:10:30 +02:00
|
|
|
if [[ ! -v oldGenPath ]] ; then
|
2017-01-08 22:06:53 +01:00
|
|
|
return
|
2017-01-07 19:16:26 +01:00
|
|
|
fi
|
2017-01-08 22:06:53 +01:00
|
|
|
|
|
|
|
echo "Cleaning up orphan links from $HOME"
|
|
|
|
|
|
|
|
local newGenFiles oldGenFiles
|
|
|
|
newGenFiles="$(readlink -e "$newGenPath/home-files")"
|
|
|
|
oldGenFiles="$(readlink -e "$oldGenPath/home-files")"
|
2017-03-10 23:56:43 +01:00
|
|
|
find "$oldGenFiles" -type f -print0 -or -type l -print0 \
|
2017-01-08 22:06:53 +01:00
|
|
|
| xargs -0 bash ${cleanup} "$newGenFiles" "$oldGenFiles"
|
|
|
|
}
|
|
|
|
|
2017-03-29 00:10:30 +02:00
|
|
|
if [[ ! -v oldGenPath || "$oldGenPath" != "$newGenPath" ]] ; then
|
2017-05-06 00:35:36 +02:00
|
|
|
echo "Creating profile generation $newGenNum"
|
2017-01-21 12:27:50 +01:00
|
|
|
$DRY_RUN_CMD ln -Tsf $VERBOSE_ARG "$newGenPath" "$newGenProfilePath"
|
2017-02-05 23:00:04 +01:00
|
|
|
$DRY_RUN_CMD ln -Tsf $VERBOSE_ARG "$newGenProfilePath" "$genProfilePath"
|
2017-01-21 12:27:50 +01:00
|
|
|
$DRY_RUN_CMD ln -Tsf $VERBOSE_ARG "$newGenPath" "$newGenGcPath"
|
2017-01-07 19:16:26 +01:00
|
|
|
else
|
2017-05-06 00:35:36 +02:00
|
|
|
echo "No change so reusing latest profile generation $oldGenNum"
|
2017-01-07 19:16:26 +01:00
|
|
|
fi
|
2017-05-06 00:35:36 +02:00
|
|
|
|
|
|
|
linkNewGen
|
|
|
|
cleanOldGen
|
2017-05-04 00:36:39 +02:00
|
|
|
''
|
|
|
|
);
|
2017-01-07 19:16:26 +01:00
|
|
|
|
2017-05-04 00:36:39 +02:00
|
|
|
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
|
|
|
|
|
|
|
sf = pkgs.writeText "activation-script" ''
|
|
|
|
#!${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-05-15 23:50:16 +02:00
|
|
|
# This code explicitly requires GNU Core Utilities and Bash.
|
|
|
|
# We therefore need to ensure they are prioritized over any
|
|
|
|
# other similarly named tools on the system.
|
|
|
|
export PATH="${pkgs.coreutils}/bin:${pkgs.bash}/bin:$PATH"
|
|
|
|
|
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}
|
|
|
|
'';
|
2017-01-08 22:06:53 +01:00
|
|
|
|
|
|
|
home-files = pkgs.stdenv.mkDerivation {
|
|
|
|
name = "home-manager-files";
|
|
|
|
|
|
|
|
phases = [ "installPhase" ];
|
|
|
|
|
|
|
|
installPhase =
|
2017-02-09 22:32:09 +01:00
|
|
|
"mkdir -p $out\n" +
|
2017-01-08 22:06:53 +01:00
|
|
|
concatStringsSep "\n" (
|
2017-03-10 23:56:43 +01:00
|
|
|
mapAttrsToList (n: v:
|
|
|
|
''
|
|
|
|
if [ -d "${v.source}" ]; then
|
|
|
|
mkdir -pv "$(dirname "$out/${v.target}")"
|
|
|
|
ln -sv "${v.source}" "$out/${v.target}"
|
|
|
|
else
|
|
|
|
install -D -m${v.mode} "${v.source}" "$out/${v.target}"
|
|
|
|
fi
|
|
|
|
''
|
2017-01-08 22:06:53 +01:00
|
|
|
) cfg.file
|
|
|
|
);
|
|
|
|
};
|
2017-01-07 19:16:26 +01:00
|
|
|
in
|
|
|
|
pkgs.stdenv.mkDerivation {
|
2017-01-08 22:06:53 +01:00
|
|
|
name = "home-manager-generation";
|
2017-01-07 19:16:26 +01:00
|
|
|
|
|
|
|
phases = [ "installPhase" ];
|
|
|
|
|
|
|
|
installPhase = ''
|
2017-02-09 22:32:09 +01:00
|
|
|
install -D -m755 ${sf} $out/activate
|
2017-01-08 22:06:53 +01:00
|
|
|
|
|
|
|
substituteInPlace $out/activate \
|
|
|
|
--subst-var-by GENERATION_DIR $out
|
|
|
|
|
2017-02-09 22:32:09 +01:00
|
|
|
ln -s ${home-files} $out/home-files
|
2017-01-07 19:16:26 +01:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
home.path = pkgs.buildEnv {
|
|
|
|
name = "home-manager-path";
|
|
|
|
|
|
|
|
paths = cfg.packages;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Environment of packages installed through home-manager";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|