mirror of
https://github.com/nix-community/home-manager
synced 2024-11-23 03:29:45 +01:00
Merge branch 'fix/default-conf-dir'
This commit is contained in:
commit
3793dfeab5
3 changed files with 63 additions and 35 deletions
11
README.md
11
README.md
|
@ -46,15 +46,16 @@ Currently the easiest way to install Home Manager is as follows:
|
|||
since Home Manager uses these directories to manage your profile
|
||||
generations. On NixOS these should already be available.
|
||||
|
||||
2. Clone the Home Manager repository into the `~/.nixpkgs` directory:
|
||||
2. Clone the Home Manager repository into the `~/.config/nixpkgs`
|
||||
directory:
|
||||
|
||||
```
|
||||
$ git clone https://github.com/rycee/home-manager ~/.nixpkgs/home-manager
|
||||
$ git clone https://github.com/rycee/home-manager ~/.config/nixpkgs/home-manager
|
||||
```
|
||||
|
||||
3. Add Home Manager to your user's Nixpkgs, for example by adding it
|
||||
to the `packageOverrides` section in your `~/.nixpkgs/config.nix`
|
||||
file:
|
||||
to the `packageOverrides` section in your
|
||||
`~/.config/nixpkgs/config.nix` file:
|
||||
|
||||
```nix
|
||||
{
|
||||
|
@ -84,7 +85,7 @@ the htop and fortune packages, installs Emacs with a few extra
|
|||
packages enabled, installs Firefox with Adobe Flash enabled, and
|
||||
enables the user gpg-agent service.
|
||||
|
||||
First create a file `~/.nixpkgs/home.nix` containing
|
||||
First create a file `~/.config/nixpkgs/home.nix` containing
|
||||
|
||||
```nix
|
||||
{ pkgs, ... }:
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
{ pkgs, modulesPath ? "$HOME/.nixpkgs/home-manager/modules" }:
|
||||
{ pkgs, modulesPath ? "$HOME/.config/nixpkgs/home-manager/modules" }:
|
||||
|
||||
let
|
||||
|
||||
homeManagerExpr = pkgs.writeText "home-manager.nix" ''
|
||||
{ pkgs ? import <nixpkgs> {}, confPath, modulesPath }:
|
||||
{ pkgs ? import <nixpkgs> {}, confPath }:
|
||||
|
||||
let
|
||||
env = import modulesPath {
|
||||
env = import <home-manager> {
|
||||
configuration = import confPath;
|
||||
pkgs = pkgs;
|
||||
};
|
||||
|
|
|
@ -7,39 +7,67 @@ PATH=@coreutils@/bin:$PATH
|
|||
|
||||
set -euo pipefail
|
||||
|
||||
function doBuild() {
|
||||
if [[ -z "$1" ]]; then
|
||||
echo "Need to provide path to configuration file."
|
||||
exit 1
|
||||
# Attempts to set the HOME_MANAGER_CONFIG global variable.
|
||||
#
|
||||
# If no configuration file can be found then this function will print
|
||||
# an error message and exit with an error code.
|
||||
function setConfigFile() {
|
||||
if [[ -v HOME_MANAGER_CONFIG ]] ; then
|
||||
if [[ ! -e "$HOME_MANAGER_CONFIG" ]] ; then
|
||||
echo "No configure file found at $HOME_MANAGER_CONFIG"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
HOME_MANAGER_CONFIG="$(realpath "$HOME_MANAGER_CONFIG")"
|
||||
return
|
||||
fi
|
||||
|
||||
if [[ -z "$2" ]]; then
|
||||
local confFile
|
||||
for confFile in "$HOME/.config/nixpkgs/home.nix" \
|
||||
"$HOME/.nixpkgs/home.nix" ; do
|
||||
if [[ -e "$confFile" ]] ; then
|
||||
HOME_MANAGER_CONFIG="$confFile"
|
||||
return
|
||||
fi
|
||||
done
|
||||
|
||||
echo "No configuration file found. " \
|
||||
"Please create one at ~/.config/nixpkgs/home.nix"
|
||||
exit 1
|
||||
}
|
||||
|
||||
function setHomeManagerModulesPath() {
|
||||
local modulesPath
|
||||
for modulesPath in "@MODULES_PATH@" \
|
||||
"$HOME/.nixpkgs/home-manager/modules" ; do
|
||||
if [[ -e "$modulesPath" ]] ; then
|
||||
export NIX_PATH="$NIX_PATH${NIX_PATH:+:}home-manager=$modulesPath"
|
||||
return
|
||||
fi
|
||||
done
|
||||
}
|
||||
|
||||
function doBuild() {
|
||||
if [[ -z "$1" ]]; then
|
||||
echo "Need to provide generation output path."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [[ -e "$2" ]]; then
|
||||
echo "The output path $2 already exists."
|
||||
if [[ -e "$1" ]]; then
|
||||
echo "The output path $1 already exists."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
local confFile output
|
||||
confFile="$(realpath "$1")"
|
||||
setConfigFile
|
||||
setHomeManagerModulesPath
|
||||
|
||||
output="$(realpath "$1")"
|
||||
|
||||
if [[ $? -ne 0 ]]; then
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [[ ! -r "$confFile" ]]; then
|
||||
echo "No such configuration file: $1"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
output="$(realpath "$2")"
|
||||
|
||||
if [[ $? -ne 0 ]]; then
|
||||
exit 1
|
||||
fi
|
||||
export NIX_PATH="$NIX_PATH${NIX_PATH:+:}home-manager=@MODULES_PATH@"
|
||||
|
||||
local extraArgs
|
||||
extraArgs=""
|
||||
|
@ -54,8 +82,7 @@ function doBuild() {
|
|||
|
||||
nix-build $extraArgs \
|
||||
"@HOME_MANAGER_EXPR_PATH@" \
|
||||
--argstr modulesPath "@MODULES_PATH@" \
|
||||
--argstr confPath "$confFile" \
|
||||
--argstr confPath "$HOME_MANAGER_CONFIG" \
|
||||
-A activation-script \
|
||||
-o "$output"
|
||||
}
|
||||
|
@ -64,7 +91,7 @@ function doSwitch() {
|
|||
local wrkdir
|
||||
wrkdir="$(mktemp -d)"
|
||||
|
||||
if doBuild "$1" "$wrkdir/generation" ; then
|
||||
if doBuild "$wrkdir/generation" ; then
|
||||
"$wrkdir/generation/activate"
|
||||
fi
|
||||
|
||||
|
@ -93,7 +120,8 @@ function doHelp() {
|
|||
echo
|
||||
echo "Options"
|
||||
echo
|
||||
echo " -f FILE The home configuration file. Default is ~/.nixpkgs/home.nix"
|
||||
echo " -f FILE The home configuration file."
|
||||
echo " Default is '~/.config/nixpkgs/home.nix'."
|
||||
echo " -I PATH Add a path to the Nix expression search path."
|
||||
echo " -v Verbose output"
|
||||
echo " -n Do a dry run, only prints what actions would be taken"
|
||||
|
@ -107,13 +135,12 @@ function doHelp() {
|
|||
echo " packages List all packages installed in home-manager-path"
|
||||
}
|
||||
|
||||
CONFIG_FILE="$HOME/.nixpkgs/home.nix"
|
||||
EXTRA_NIX_PATH=()
|
||||
|
||||
while getopts f:I:vnh opt; do
|
||||
case $opt in
|
||||
f)
|
||||
CONFIG_FILE=$OPTARG
|
||||
HOME_MANAGER_CONFIG="$OPTARG"
|
||||
;;
|
||||
I)
|
||||
EXTRA_NIX_PATH+=("$OPTARG")
|
||||
|
@ -143,10 +170,10 @@ cmd="$*"
|
|||
|
||||
case "$cmd" in
|
||||
build)
|
||||
doBuild "$CONFIG_FILE" "result"
|
||||
doBuild "result"
|
||||
;;
|
||||
switch)
|
||||
doSwitch "$CONFIG_FILE"
|
||||
doSwitch
|
||||
;;
|
||||
generations)
|
||||
doListGens
|
||||
|
|
Loading…
Reference in a new issue