14 lines
151 B
Nix
14 lines
151 B
Nix
|
{
|
||
|
pkgs,
|
||
|
lib,
|
||
|
config,
|
||
|
...
|
||
|
}: {
|
||
|
imports = [
|
||
|
./hardware-configuration.nix
|
||
|
];
|
||
|
|
||
|
# Set your time zone.
|
||
|
time.timeZone = "Europe/Paris";
|
||
|
}
|