nixos/hardware/vm/configuration.nix

25 lines
524 B
Nix
Raw Normal View History

2021-11-16 20:57:04 +01:00
# Edit this configuration file to define what should be installed on
# your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running nixos-help).
{ config, pkgs, ... }:
{
imports =
[ # Include the results of the hardware scan.
2021-11-22 15:14:14 +01:00
../../common/desktop.nix
2021-11-16 20:57:04 +01:00
./hardware-configuration.nix
];
2021-11-23 20:57:23 +01:00
networking = {
hostName = "nixos-vm";
interfaces.enp0s3.useDHCP = true;
};
2021-11-16 20:57:04 +01:00
environment.variables = {
2021-11-20 17:16:43 +01:00
ZWEILI_HARDWARE = "vm";
2021-11-16 20:57:04 +01:00
};
}