mirror of
https://github.com/tuxdotrs/nix-config.git
synced 2026-09-19 16:49:04 +05:30
16 lines
259 B
Nix
16 lines
259 B
Nix
{
|
|
flake.modules.nixos.vps = {
|
|
lib,
|
|
modulesPath,
|
|
system,
|
|
...
|
|
}: {
|
|
imports = [
|
|
(modulesPath + "/profiles/qemu-guest.nix")
|
|
];
|
|
|
|
networking.useDHCP = lib.mkDefault true;
|
|
nixpkgs.hostPlatform = lib.mkDefault system;
|
|
};
|
|
}
|