0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03:00

nixos/tools: make desktopConfiguation types.listOf types.lines

This fixes #108124.
This commit is contained in:
WORLDofPEACE 2021-02-13 18:45:27 -05:00
parent edf3a8376e
commit 94f0210e60
4 changed files with 8 additions and 8 deletions

View file

@ -11,12 +11,12 @@ import ./make-test-python.nix ({ lib, ... } : {
}
'';
system.nixos-generate-config.desktopConfiguration = ''
system.nixos-generate-config.desktopConfiguration = [''
# DESKTOP
# services.xserver.enable = true;
# services.xserver.displayManager.gdm.enable = true;
# services.xserver.desktopManager.gnome3.enable = true;
'';
''];
};
testScript = ''
start_all()