mirror of
https://github.com/ivabus/nixos
synced 2024-11-13 03:55:18 +03:00
15 lines
223 B
Nix
15 lines
223 B
Nix
|
|
||
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
|
||
|
boot.loader.systemd-boot.enable = true;
|
||
|
boot.loader.efi.canTouchEfiVariables = true;
|
||
|
|
||
|
networking.hostName = "vetus";
|
||
|
time.timeZone = "Europe/Moscow";
|
||
|
|
||
|
system.stateVersion = "23.05";
|
||
|
}
|
||
|
|