Add NixOS 24.05

This commit is contained in:
Greg Hellings
2024-06-30 00:08:38 -05:00
parent de5dc1ae7e
commit cea0d3fb18
15 changed files with 232 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
{
description = "A basic NixOS Vagrant install";
inputs = {
nixstable.url = "github:nixos/nixpkgs/nixos-24.05";
};
outputs = { nixstable, self, ... }@inputs:
{
nixosConfigurations.vagrant = nixstable.lib.nixosSystem {
system = "x86_64-linux";
modules = [ ./configuration.nix ];
};
};
}