2024-12-17 16:46:44 -05:00

15 lines
292 B
Nix

{ config, pkgs, ... }:
{
imports = [
./hardware-configuration.nix
./disk-config.nix
];
# Generate with `head -c4 /dev/urandom | od -A none -t x4`
networking.hostId = "908cbf04";
networking.hostName = "odo"; # Define your hostname.
time.timeZone = "America/New_York";
}