empty -> emptyDirectory

This commit is contained in:
tv 2021-12-22 23:27:07 +01:00
parent e888b00a6b
commit 2656cbf2a9
2 changed files with 2 additions and 4 deletions

View File

@ -36,7 +36,7 @@ let
type = types.user; type = types.user;
default = { default = {
name = "fcgiwrap"; name = "fcgiwrap";
home = toString pkgs.empty; home = toString pkgs.emptyDirectory;
}; };
}; };
}; };
@ -111,7 +111,7 @@ let
type = types.user; type = types.user;
default = { default = {
name = "git"; name = "git";
home = toString pkgs.empty; home = toString pkgs.emptyDirectory;
}; };
}; };
}; };

View File

@ -1,2 +0,0 @@
{ pkgs }:
pkgs.runCommand "empty-1.0.0" {} "mkdir $out"