2017-07-11 19:55:30 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
2017-07-19 00:12:34 +02:00
|
|
|
with import ../lib/dag.nix;
|
2017-07-11 19:55:30 +02:00
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
cfg = config.programs.home-manager;
|
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
options = {
|
|
|
|
programs.home-manager = {
|
|
|
|
enable = mkEnableOption "Home Manager";
|
|
|
|
|
|
|
|
modulesPath = mkOption {
|
|
|
|
type = types.nullOr types.str;
|
|
|
|
default = null;
|
|
|
|
example = "$HOME/devel/home-manager/modules";
|
|
|
|
description = ''
|
|
|
|
The default path to use for Home Manager modules. If this
|
|
|
|
path does not exist then
|
|
|
|
<filename>$HOME/.config/nixpkgs/home-manager/modules</filename>
|
|
|
|
and <filename>$HOME/.nixpkgs/home-manager/modules</filename>
|
|
|
|
will be attempted.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
home.packages = [
|
|
|
|
(import ../../home-manager {
|
|
|
|
inherit pkgs;
|
|
|
|
inherit (cfg) modulesPath;
|
|
|
|
})
|
|
|
|
];
|
2017-07-19 00:12:34 +02:00
|
|
|
|
|
|
|
# Uninstall manually installed home-manager, if such exists.
|
|
|
|
# Without this a file collision error will be printed.
|
|
|
|
home.activation.uninstallHomeManager =
|
|
|
|
dagEntryBetween [ "installPackages" ] [ "writeBoundary" ] ''
|
|
|
|
if nix-env -q | grep -q '^home-manager$' ; then
|
|
|
|
$DRY_RUN_CMD nix-env -e home-manager
|
|
|
|
|
|
|
|
echo "You can now remove the 'home-manager' entry in"
|
|
|
|
echo "'~/.config/nixpkgs/config.nix', if you want."
|
|
|
|
fi
|
|
|
|
'';
|
2017-07-11 19:55:30 +02:00
|
|
|
};
|
|
|
|
}
|