From 127105649e196e50778d111223550102d6cb2c5d Mon Sep 17 00:00:00 2001 From: Julian Sutter Date: Thu, 5 Jan 2023 09:08:20 -0800 Subject: [PATCH] add aurora --- flake.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index e03b558..a0a5120 100644 --- a/flake.nix +++ b/flake.nix @@ -11,7 +11,10 @@ framework = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; modules = [ ./configuration.nix ]; - + }; + aurora = nixpkgs.lib.nixosSystem { + system = "x86_64-linux"; + modules = [ ./configuration.nix ]; }; }; };