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

12 lines
229 B
Nix
Raw Normal View History

2023-05-24 10:54:07 +00:00
{ config, lib, pkgs, ... }:
{
fileSystems."/".label = "root";
fileSystems."/boot".label = "boot";
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
2023-05-24 10:54:07 +00:00
system.stateVersion = "23.05";
}