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 + ]; + }; + }; +}