Add example vr flake thingy (not yet included)

This commit is contained in:
Chris (wolcen) Thompson 2025-04-25 12:21:58 -04:00
parent 973eebac90
commit 063ce150a5

15
vr.nix Normal file
View file

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