nixos/machines/vetus/configuration.nix

15 lines
223 B
Nix
Raw Normal View History

2023-07-28 17:41:32 +03:00
{ config, pkgs, ... }:
{
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
networking.hostName = "vetus";
time.timeZone = "Europe/Moscow";
system.stateVersion = "23.05";
}