programs.schroot.settings
NixOS option
Schroot configuration settings. For more details, see schroot.conf(5).
type: attribute set of section of an INI file (attrs of INI atom (null, bool, int, float or string))Default
{ }Example
declared in: nixos/modules/programs/schroot.nixView source on NixOS/nixpkgs →{
noble = {
description = "Ubuntu 24.04 Noble";
directory = "/srv/chroot/noble";
personality = "linux";
preserve-environment = false;
profile = "my-profile";
root-users = "my-user";
shell = "/bin/bash";
type = "directory";
users = "my-user";
};
}