grafana-alloy: don't build the frontend twice
[NixPkgs.git] / nixos / modules / virtualisation / lxc-instance-common.nix
blob1a9ee7a2680b131bfea0f2c8c3790532f055910d
1 {lib, ...}:
4   meta = {
5     maintainers = lib.teams.lxc.members;
6   };
8   imports = [
9     ./lxc-image-metadata.nix
11     ../installer/cd-dvd/channel.nix
12     ../profiles/clone-config.nix
13     ../profiles/minimal.nix
14   ];
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.
23   '';
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;