22 lines
353 B
Nix
22 lines
353 B
Nix
# Porthos specific settings
|
|
{ ... }:
|
|
|
|
{
|
|
imports = [
|
|
./boot.nix
|
|
./hardware.nix
|
|
./home.nix
|
|
./networking.nix
|
|
./secrets
|
|
./services.nix
|
|
./system.nix
|
|
./users.nix
|
|
];
|
|
|
|
# Set your time zone.
|
|
time.timeZone = "Europe/Paris";
|
|
time.timeZone = "Europe/London";
|
|
|
|
system.stateVersion = "24.05"; # Did you read the comment?
|
|
}
|