From 7a074817e352190e1ed420ed4ab0cbfcab6ba83f Mon Sep 17 00:00:00 2001 From: Don Harper Date: Tue, 12 Sep 2023 21:12:44 -0500 Subject: [PATCH] first pass --- flake.nix | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 flake.nix diff --git a/flake.nix b/flake.nix new file mode 100644 index 0000000..8080e5e --- /dev/null +++ b/flake.nix @@ -0,0 +1,14 @@ +{ + inputs = { + nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; + }; + + outputs = inputs: { + nixosConfigurations = { + loki = inputs.nixpkgs.lib.nixosSystem { + system = "x86_64-linux"; + modules = [ ./hosts/loki/configuration.nix ]; + }; + }; + }; +}