Set login and loginInner to internal options

This commit is contained in:
Tobias Happ 2019-11-27 22:20:15 +01:00 committed by Alexander Sosedkin
parent cd58e8dbd4
commit b52091eff6

View file

@ -18,19 +18,19 @@ in
options = { options = {
environment.files = { environment.files = {
login = mkOption { login = mkOption {
type = types.package; type = types.package;
readOnly = true; readOnly = true;
internal = true;
description = "Login script."; description = "Login script.";
}; };
loginInner = mkOption { loginInner = mkOption {
type = types.package; type = types.package;
readOnly = true; readOnly = true;
internal = true;
description = "Login-inner script."; description = "Login-inner script.";
}; };
}; };
}; };