machines/liveiso: init

This commit is contained in:
makefu 2024-12-06 20:08:23 +01:00
parent 037ee8636c
commit 48f1d47c34
No known key found for this signature in database
GPG key ID: 36F7711F3FC0F225
2 changed files with 18 additions and 0 deletions

View file

@ -0,0 +1,11 @@
{ pkgs, modulesPath, ... }: {
imports = [
(modulesPath + "/installer/cd-dvd/installation-cd-minimal.nix")
../../2configs
];
# start sshd in any case
systemd.services.sshd.wantedBy = pkgs.lib.mkForce [ "multi-user.target" ];
isoImage.squashfsCompression = "gzip -Xcompression-level 1";
}

View file

@ -0,0 +1,7 @@
{
imports = [
];
# New machine!
}