mirror of
https://github.com/nix-community/home-manager
synced 2025-01-11 19:49:49 +01:00
parent
dcbe0f2a31
commit
4d49cee194
1 changed files with 2 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
||||||
{ pkgs ? import <nixpkgs> {}
|
{ pkgs ? import <nixpkgs> {}
|
||||||
, confPath
|
, confPath
|
||||||
, confAttr
|
, confAttr ? null
|
||||||
, check ? true
|
, check ? true
|
||||||
, newsReadIdsFile ? null
|
, newsReadIdsFile ? null
|
||||||
}:
|
}:
|
||||||
|
@ -11,7 +11,7 @@ let
|
||||||
|
|
||||||
env = import ../modules {
|
env = import ../modules {
|
||||||
configuration =
|
configuration =
|
||||||
if confAttr == ""
|
if confAttr == "" || confAttr == null
|
||||||
then confPath
|
then confPath
|
||||||
else (import confPath).${confAttr};
|
else (import confPath).${confAttr};
|
||||||
pkgs = pkgs;
|
pkgs = pkgs;
|
||||||
|
|
Loading…
Reference in a new issue