mirror of
https://github.com/ivabus/nixos
synced 2024-11-22 16:35:06 +03:00
14 lines
188 B
Nix
14 lines
188 B
Nix
|
|
||
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
|
||
|
boot.loader.systemd-boot.enable = true;
|
||
|
boot.loader.efi.canTouchEfiVariables = true;
|
||
|
|
||
|
networking.hostName = "vetus";
|
||
|
|
||
|
system.stateVersion = "23.05";
|
||
|
}
|
||
|
|