modules: system: nix: use structural 'settings'
All checks were successful
continuous-integration/drone/push Build is passing

Instead of a stringly-typed `extraOptions`.
This commit is contained in:
Bruno BELANYI 2022-02-08 14:32:00 +01:00
parent e57ebf4317
commit f73edd9f8d

View file

@ -17,9 +17,9 @@ in
nix = { nix = {
package = pkgs.nixFlakes; package = pkgs.nixFlakes;
extraOptions = '' settings = {
experimental-features = nix-command flakes experimental-features = [ "nix-command" "flakes" ];
''; };
}; };
} }