From 03cfe7c488fd163f34eefc2f33ac7e9602158fed Mon Sep 17 00:00:00 2001 From: Alexander Heldt Date: Sat, 7 Jan 2023 18:21:18 +0100 Subject: [PATCH] Add flake.nix --- flake.nix | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 flake.nix diff --git a/flake.nix b/flake.nix new file mode 100644 index 0000000..2be2d16 --- /dev/null +++ b/flake.nix @@ -0,0 +1,8 @@ +{ + outputs = { self, nixpkgs }: { + nixosConfigurations.sombrero = nixpkgs.lib.nixosSystem { + system = "aarch64-linux"; + modules = [ ./hosts/sombrero/configuration.nix ]; + }; + }; +}