NixOS 23.11 and Flaking

This commit is contained in:
Greg Hellings
2023-11-28 10:30:17 -06:00
parent d472bf08d5
commit 2b7d613737
13 changed files with 252 additions and 3 deletions
+15
View File
@@ -0,0 +1,15 @@
{
description = "A basic NixOS Vagrant install";
inputs = {
nixstable.url = "github:nixos/nixpkgs/nixos-23.11";
};
outputs = { nixstable, self, ... }@inputs:
{
nixosConfigurations.vagrant = nixstable.lib.nixosSystem {
system = "x86_64-linux";
modules = [ ./configuration.nix ];
};
};
}