From 063ce150a574b045c03514e82b99b48c50af6448 Mon Sep 17 00:00:00 2001
From: "Chris (wolcen) Thompson" <chris@agaric.coop>
Date: Fri, 25 Apr 2025 12:21:58 -0400
Subject: [PATCH] Add example vr flake thingy (not yet included)

---
 vr.nix | 15 +++++++++++++++
 1 file changed, 15 insertions(+)
 create mode 100644 vr.nix

diff --git a/vr.nix b/vr.nix
new file mode 100644
index 0000000..b610434
--- /dev/null
+++ b/vr.nix
@@ -0,0 +1,15 @@
+{
+  inputs = {
+    nixpkgs-xr.url = "github:nix-community/nixpkgs-xr";
+  };
+
+  outputs = { nixpkgs, nixpkgs-xr, ... }: {
+    nixosConfigurations.foo = nixpkgs.lib.nixosSystem {
+      # ...
+      modules = [
+        # ...
+        nixpkgs-xr.nixosModules.nixpkgs-xr
+      ];
+    };
+  };
+}