nix-config/hosts/nixos/porthos/default.nix

21 lines
318 B
Nix
Raw Normal View History

# Porthos specific settings
{ ... }:
{
imports = [
./boot.nix
./hardware.nix
./home.nix
./networking.nix
./secrets
./services.nix
./system.nix
2021-02-07 23:07:20 +01:00
./users.nix
];
2021-05-09 12:05:04 +02:00
# Set your time zone.
time.timeZone = "Europe/Paris";
system.stateVersion = "24.05"; # Did you read the comment?
}