mirror of
https://github.com/nix-community/home-manager
synced 2024-11-23 03:29:45 +01:00
home-manager: add target to generated configuration
When we detect that the installation is on a non-NixOS GNU/Linux distribution then we enable the generic Linux module.
This commit is contained in:
parent
f17819f4f1
commit
f2f010e8ab
1 changed files with 7 additions and 1 deletions
|
@ -36,6 +36,12 @@ in runCommand "home-manager-install" {
|
|||
xdgVars="$xdgVars xdg.stateHome = \"$XDG_STATE_HOME\";$nl"
|
||||
fi
|
||||
|
||||
if [[ $OSTYPE == linux-* && ! -e /etc/NIXOS ]]; then
|
||||
target=$'\n targets.genericLinux.enable = true;\n'
|
||||
else
|
||||
target=""
|
||||
fi
|
||||
|
||||
mkdir -p "$(dirname "$confFile")"
|
||||
cat > $confFile <<EOF
|
||||
{ config, pkgs, ... }:
|
||||
|
@ -58,7 +64,7 @@ in runCommand "home-manager-install" {
|
|||
|
||||
# Let Home Manager install and manage itself.
|
||||
programs.home-manager.enable = true;
|
||||
}
|
||||
$target}
|
||||
EOF
|
||||
fi
|
||||
|
||||
|
|
Loading…
Reference in a new issue