5 maintainers = lib.teams.lxc.members;
9 ./lxc-image-metadata.nix
11 ../installer/cd-dvd/channel.nix
12 ../profiles/clone-config.nix
13 ../profiles/minimal.nix
16 # Allow the user to login as root without password.
17 users.users.root.initialHashedPassword = lib.mkOverride 150 "";
19 # Some more help text.
20 services.getty.helpLine = ''
22 Log in as "root" with an empty password.
25 # Containers should be light-weight, so start sshd on demand.
26 services.openssh.enable = lib.mkDefault true;
27 services.openssh.startWhenNeeded = lib.mkDefault true;
29 # As this is intended as a standalone image, undo some of the minimal profile stuff
30 documentation.enable = true;
31 documentation.nixos.enable = true;
32 services.logrotate.enable = true;