From a19c6530b28ee5a0996d8e7f6c198481586f06c9 Mon Sep 17 00:00:00 2001 From: Gabriel Arazas Date: Mon, 6 Nov 2023 17:05:46 +0800 Subject: [PATCH] templates/sample-nixos-template: update default NixOS config --- templates/sample-nixos-template/hosts/desktop/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/templates/sample-nixos-template/hosts/desktop/default.nix b/templates/sample-nixos-template/hosts/desktop/default.nix index 1fe0bb30..c9676c2c 100644 --- a/templates/sample-nixos-template/hosts/desktop/default.nix +++ b/templates/sample-nixos-template/hosts/desktop/default.nix @@ -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"; }