From d66516b052d985b69c81465b9ba3b5a5f2bde344 Mon Sep 17 00:00:00 2001 From: Stefan Ellmauthaler Date: Tue, 9 Nov 2021 14:49:08 +0100 Subject: [PATCH] NIX changed configuration.nix to baseconfiguration.nix (to provide easier deployment on new systems) Signed-off-by: Stefan Ellmauthaler --- configuration.nix => baseconfiguration.nix | 0 default.nix | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename configuration.nix => baseconfiguration.nix (100%) diff --git a/configuration.nix b/baseconfiguration.nix similarity index 100% rename from configuration.nix rename to baseconfiguration.nix diff --git a/default.nix b/default.nix index 5db5d3b..778d8fd 100644 --- a/default.nix +++ b/default.nix @@ -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;