mirror of
https://github.com/nix-community/home-manager
synced 2024-11-04 18:29:45 +01:00
1bc59f7290
This is a NixOS module that is intended to be imported into a NixOS system configuration. It allows the system users to be set up directly from the system configuration. The actual profile switch is performed by a oneshot systemd unit per configured user that acts much like the regular `home-manager switch` command. With this implementation, the NixOS module does not work properly with the `nixos-rebuild build-vm` command. This can be solved by using the `users.users.<name?>.packages` option to install packages but this does not work flawlessly with certain Nixpkgs packages. In particular, for programs using the Qt libraries.
55 lines
1.3 KiB
Nix
55 lines
1.3 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
cfg = config.programs.home-manager;
|
|
|
|
dag = config.lib.dag;
|
|
|
|
in
|
|
|
|
{
|
|
meta.maintainers = [ maintainers.rycee ];
|
|
|
|
options = {
|
|
programs.home-manager = {
|
|
enable = mkEnableOption "Home Manager";
|
|
|
|
path = mkOption {
|
|
type = types.nullOr types.str;
|
|
default = null;
|
|
example = "$HOME/devel/home-manager";
|
|
description = ''
|
|
The default path to use for Home Manager. If this path does
|
|
not exist then
|
|
<filename>$HOME/.config/nixpkgs/home-manager</filename> and
|
|
<filename>$HOME/.nixpkgs/home-manager</filename> will be
|
|
attempted.
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
|
|
config = mkIf (cfg.enable && !config.nixosSubmodule) {
|
|
home.packages = [
|
|
(import ../../home-manager {
|
|
inherit pkgs;
|
|
inherit (cfg) path;
|
|
})
|
|
];
|
|
|
|
# Uninstall manually installed home-manager, if such exists.
|
|
# Without this a file collision error will be printed.
|
|
home.activation.uninstallHomeManager =
|
|
dag.entryBetween [ "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' packageOverride"
|
|
echo "or overlay in '~/.config/nixpkgs/', if you want."
|
|
fi
|
|
'';
|
|
};
|
|
}
|