Add Nix 25.05

This commit is contained in:
Greg Hellings
2025-05-20 20:51:38 -05:00
parent 99eda3fd3f
commit 0a78f250d7
15 changed files with 243 additions and 1 deletions
+16
View File
@@ -0,0 +1,16 @@
{
description = "A basic NixOS Vagrant install";
inputs = {
nixstable.url = "github:nixos/nixpkgs/nixos-25.05";
};
outputs =
{ nixstable, ... }:
{
nixosConfigurations.vagrant = nixstable.lib.nixosSystem {
system = "x86_64-linux";
modules = [ ./configuration.nix ];
};
};
}