From d3bc95e4283da8b3e1787aaea496c6cd23dcd431 Mon Sep 17 00:00:00 2001 From: Julian Date: Sun, 18 Dec 2022 23:31:54 -0800 Subject: [PATCH] grrr --- flakes.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 flakes.nix diff --git a/flakes.nix b/flakes.nix new file mode 100644 index 0000000..951e4fe --- /dev/null +++ b/flakes.nix @@ -0,0 +1,12 @@ +{ + description = "NixOS configuration with flakes"; + inputs.nixos-hardware.url = "github:NixOS/nixos-hardware/master"; + + outputs = { self, nixpkgs, nixos-hardware }: { + nixosConfigurations. = nixpkgs.lib.nixosSystem { + modules = [ + nixos-hardware.nixosModules.framework + ]; + }; + }; +}