1
0
mirror of https://github.com/ellmau/nixos.git synced 2025-12-19 09:29:36 +01:00

NIX changed configuration.nix to baseconfiguration.nix (to provide easier deployment on new systems)

Signed-off-by: Stefan Ellmauthaler <stefan.ellmauthaler@tu-dresden.de>
This commit is contained in:
Stefan Ellmauthaler 2021-11-09 14:49:08 +01:00
parent 749594165e
commit d66516b052
2 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@
extraOverlays = if args ? extraOverlays then args.extraOverlays else [ ];
type = if args ? type then args.type else [ ./layer/graphical.nix ];
pkgs = flakes.nixpkgs;
configuration = if args ? configuration then args.configuration else import ./configuration.nix {inherit extraOverlays system pkgs name type flakes flakeOutputs;} ;
configuration = if args ? configuration then args.configuration else import ./baseconfiguration.nix {inherit extraOverlays system pkgs name type flakes flakeOutputs;} ;
in
{
inherit name;