From 33e742804a4aaf23946efd23ddc2ec34e6cbb4e7 Mon Sep 17 00:00:00 2001 From: Daniel Kempkens Date: Sat, 30 Jul 2022 21:38:01 +0200 Subject: [PATCH] Use arion overlay --- system/flakes/sail.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/system/flakes/sail.nix b/system/flakes/sail.nix index 67a576e..3172b92 100644 --- a/system/flakes/sail.nix +++ b/system/flakes/sail.nix @@ -1,8 +1,23 @@ { nixpkgs, arion, ... }: +let + overlay-arion = arion.overlay; + + nixpkgsConfig = { + overlays = [ + overlay-arion + ]; + + config = { + allowUnfree = true; + allowBroken = true; + }; + }; +in { nixosConfigurations.sail = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; + nixpkgs = nixpkgsConfig; modules = [ arion.nixosModules.arion