Set up a minimal initial config.

This commit is contained in:
Tom Alexander
2024-12-17 15:26:10 -05:00
parent 48f700b803
commit 6953cdb81f
8 changed files with 455 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
{ 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";
}