Files
nixos-config/machine/mini.nix
2021-08-01 18:40:42 +02:00

24 lines
546 B
Nix

{ config, pkgs, ... }:
{
imports =
[ # Include the results of the hardware scan.
/etc/nixos/hardware-configuration.nix
../configs/virtualisation.nix
../configs/common.nix
../configs/user.nix
];
# Use the systemd-boot EFI boot loader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
networking.hostName = "mini";
networking.useDHCP = false;
networking.interfaces.enp3s0.useDHCP = true;
networking.firewall.enable = false;
system.stateVersion = "21.05";
}