12 lines
260 B
Nix
12 lines
260 B
Nix
{ config, lib, ... }:
|
|
|
|
{
|
|
# Host-specific system configuration
|
|
networking.hostName = "traveldroid";
|
|
system.stateVersion = "25.11";
|
|
# User-defined features
|
|
mySystem.system.core.enable = true;
|
|
# Hardware overrides
|
|
hardware.nvidia.enabled = false;
|
|
}
|