From aea2656bd3102e891612330260293575b8aa8bb4 Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Fri, 25 Oct 2024 22:34:21 +0000 Subject: [PATCH] add EDI to flake --- flake.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/flake.nix b/flake.nix index 7e1ced8..73744a9 100644 --- a/flake.nix +++ b/flake.nix @@ -52,6 +52,18 @@ ]; }; + "edi" = nixpkgs.lib.nixosSystem { + system = "x86_64-linux"; + modules = [ + # Add Disko for disk management + disko.nixosModules.disko + ./disko-config.nix + ./edi.nix + ./configuration.nix + ./hardware-configuration.nix + ]; + }; + "garrus" = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; specialArgs = { inherit inputs; };