Files
nixos-config/machines/nixos/configuration.nix
2025-05-08 23:09:15 +01:00

27 lines
712 B
Nix

# Edit this configuration file to define what should be installed on
# your system. Help is available in the configuration.nix(5) man page, on
# https://search.nixos.org/options and in the NixOS manual (`nixos-help`).
{ config, lib, pkgs, ... }:
{
imports =
[ # Include the results of the hardware scan.
./hardware-configuration.nix
../../common.nix
../../server.nix
../../hardware/esxi-vm.nix
];
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.loader.systemd-boot.configurationLimit = 2;
networking.hostName = "nixos"; # Define your hostname.
system.copySystemConfiguration = true;
system.stateVersion = "24.11";
}