lxdImage: enable docs & xlibs in standalone image

This commit is contained in:
Maciej Krüger 2021-05-01 00:47:56 +02:00
parent fec499bb98
commit 3c3349e24b
No known key found for this signature in database
GPG Key ID: 0D948CE19CF49C5F
2 changed files with 9 additions and 0 deletions

View File

@ -96,4 +96,8 @@ with lib;
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system.stateVersion = "21.05"; # Did you read the comment?
# As this is intended as a stadalone image, undo some of the minimal profile stuff
documentation.enable = true;
documentation.nixos.enable = true;
environment.noXlibs = false;
}

View File

@ -31,4 +31,9 @@ with lib;
# Network
networking.useDHCP = false;
networking.interfaces.eth0.useDHCP = true;
# As this is intended as a stadalone image, undo some of the minimal profile stuff
documentation.enable = true;
documentation.nixos.enable = true;
environment.noXlibs = false;
}