nixdots/hosts/default.nix

12 lines
263 B
Nix
Raw Normal View History

2024-02-28 18:36:12 +00:00
{self, inputs, ...}: {
flake.nixosConfigurations = let
inherit (inputs.nixpkgs.lib) nixosSystem;
specialArgs = {inherit inputs self;};
in {
vboxnix = nixosSystem {
inherit specialArgs;
modules = [ ../system ./vbox_nix ];
};
};
}