Create custom ISO to simplify bootstrapping new installs

This commit is contained in:
Vili Sinervä 2024-08-05 17:17:33 +03:00
parent 4d9fcfed6c
commit f94f7321a2
No known key found for this signature in database
GPG key ID: DF8FEAF54EFAC996
3 changed files with 29 additions and 2 deletions

10
machine-confs/generic.nix Normal file
View file

@ -0,0 +1,10 @@
{ config, pkgs, ... }:
{
networking.hostName = "nixos";
imports = [ ../base.nix ];
# Bootloader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
}