nixdots/hosts/default.nix

9 lines
168 B
Nix
Raw Normal View History

2024-02-28 22:40:50 +00:00
{self, inputs, ...}: let
inherit (inputs.nixpkgs) lib;
in {
vboxnix = lib.nixosSystem {
system = "x86_64-linux";
modules = [ ../system ./vbox_nix ];
2024-02-28 18:36:12 +00:00
};
}