nixos-config/templates/sample-nixos-template/hosts/desktop/default.nix

12 lines
229 B
Nix

{ 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";
}