From 4d1af7a40dc3d6775d125ceb3772dcc693428349 Mon Sep 17 00:00:00 2001 From: Trolli Schmittlauch Date: Thu, 13 Apr 2023 19:21:12 +0200 Subject: [PATCH] initial flake for system configuration --- flake.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 flake.nix diff --git a/flake.nix b/flake.nix new file mode 100644 index 0000000..c2758b0 --- /dev/null +++ b/flake.nix @@ -0,0 +1,15 @@ +{ + description = "NixOS system flake"; + + inputs = { + nixpkgs.url = "github:NixOS/nixpkgs/nixos-22.11"; + }; + + outputs = { self, nixpkgs }: { + + nixosConfigurations.thinknix = nixpkgs.lib.nixosSystem { + system = "x86_64-linux"; + modules = [ ./nixos/configuration.nix ]; + }; + }; +}