templates/sample-nixos-template: update default NixOS config

This commit is contained in:
Gabriel Arazas 2023-11-06 17:05:46 +08:00
parent 3c5e34865b
commit a19c6530b2
No known key found for this signature in database
GPG Key ID: ADE0C41DAB221FCC

View File

@ -1,5 +1,11 @@
{ config, lib, pkgs, ... }:
{
fileSystems."/".label = "root";
fileSystems."/boot".label = "boot";
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
system.stateVersion = "23.05";
}