mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-09 22:49:42 +00:00
9 lines
168 B
Nix
9 lines
168 B
Nix
{self, inputs, ...}: let
|
|
inherit (inputs.nixpkgs) lib;
|
|
in {
|
|
vboxnix = lib.nixosSystem {
|
|
system = "x86_64-linux";
|
|
modules = [ ../system ./vbox_nix ];
|
|
};
|
|
}
|