mirror of
https://github.com/tuxdotrs/nix-config.git
synced 2026-06-21 03:36:32 +05:30
18 lines
291 B
Nix
18 lines
291 B
Nix
{
|
|
flake.modules.nixos.alpha =
|
|
{
|
|
lib,
|
|
modulesPath,
|
|
system,
|
|
...
|
|
}:
|
|
{
|
|
imports = [
|
|
(modulesPath + "/profiles/qemu-guest.nix")
|
|
];
|
|
|
|
networking.useDHCP = lib.mkDefault true;
|
|
nixpkgs.hostPlatform = lib.mkDefault system;
|
|
};
|
|
}
|