diff --git a/flake.nix b/flake.nix index 5d196e8a..72f937ec 100644 --- a/flake.nix +++ b/flake.nix @@ -6,7 +6,7 @@ flake-utils.url = "github:numtide/flake-utils?ref=b1d9ab70662946ef0850d488da1c9019f3a9752a"; }; - outputs = { self, flake-utils, nixpkgs }: flake-utils.lib.eachDefaultSystem ( + outputs = { self, flake-utils, nixpkgs }: (flake-utils.lib.eachDefaultSystem ( system: let pkgs = import nixpkgs { @@ -32,5 +32,11 @@ packages = { archiso = pkgs.archiso; }; - }); + })) // { + valhalla = { + "DerGeret Windows" = import ./profiles/DerGeret/config.nix; + "der-geret Arch Linux" = import ./profiles/DerGeret/Arch/config.nix; + "manu-surface Arch Linux" = import ./profiles/ManuSurface/Arch/config.nix; + }; + }; }