17 lines
265 B
Nix
17 lines
265 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
imports =
|
||
|
[
|
||
|
./hardware-configuration.nix
|
||
|
];
|
||
|
|
||
|
networking.hostName = "malachite";
|
||
|
|
||
|
time.timeZone = "America/Los_Angeles";
|
||
|
|
||
|
# Read the Docs before Changing
|
||
|
system.stateVersion = "23.05"; # Did you read the comment?
|
||
|
}
|
||
|
|