Create custom ISO to simplify bootstrapping new installs
This commit is contained in:
parent
4d9fcfed6c
commit
f94f7321a2
3 changed files with 29 additions and 2 deletions
10
machine-confs/generic.nix
Normal file
10
machine-confs/generic.nix
Normal 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;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue