Create new install system with disko
This commit is contained in:
parent
29c9b505d1
commit
81237e88b0
8 changed files with 95 additions and 89 deletions
25
hosts/installer-minimal/configuration.nix
Normal file
25
hosts/installer-minimal/configuration.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
{
|
||||
pkgs,
|
||||
lib,
|
||||
nixpkgs-flake,
|
||||
...
|
||||
}:
|
||||
{
|
||||
imports = [
|
||||
"${nixpkgs-flake}/nixos/modules/installer/cd-dvd/installation-cd-minimal.nix"
|
||||
../../shared/base.nix
|
||||
];
|
||||
|
||||
environment.systemPackages = (
|
||||
with pkgs;
|
||||
[
|
||||
cryptsetup
|
||||
]
|
||||
);
|
||||
|
||||
isoImage.squashfsCompression = "gzip -Xcompression-level 1";
|
||||
networking.networkmanager.enable = lib.mkForce false;
|
||||
|
||||
#Many installs will need this, and it won't hurt either way
|
||||
services.qemuGuest.enable = true;
|
||||
}
|
1
hosts/installer-minimal/state.nix
Normal file
1
hosts/installer-minimal/state.nix
Normal file
|
@ -0,0 +1 @@
|
|||
{ }
|
Loading…
Add table
Add a link
Reference in a new issue