* helpers -> lib.

svn path=/nixos/branches/modular-nixos/; revision=15797
This commit is contained in:
Eelco Dolstra 2009-05-29 14:46:27 +00:00
parent dba1d48b78
commit 234c4340c2
6 changed files with 2 additions and 2 deletions

View File

@ -239,7 +239,7 @@ let
suffix = "/bin/splash_helper";
symlink = "/${kernelPackages.splashutils.helperName}";
} # */
{ object = import ../../../helpers/unpack-theme.nix {
{ object = import ../../../lib/unpack-theme.nix {
inherit (pkgs) stdenv;
theme = config.services.ttyBackgrounds.defaultTheme;
};

View File

@ -100,7 +100,7 @@ let
themes = map (x: if x ? theme then (unpackTheme x.theme) else "default") backgrounds;
};
unpackTheme = theme: import ../../helpers/unpack-theme.nix {
unpackTheme = theme: import ../../lib/unpack-theme.nix {
inherit stdenv theme;
};