1
0
nixfiles/hosts/_iso/configuration.nix

21 lines
396 B
Nix
Raw Normal View History

2023-02-26 18:45:26 +01:00
{ pkgs, lib, modulesPath, ... }:
{
2023-02-26 18:45:26 +01:00
imports = [
(modulesPath + "/installer/cd-dvd/installation-cd-base.nix")
../../configuration/gpg-ssh
2023-02-26 18:45:26 +01:00
];
networking.hostName = "isowo";
2025-01-16 19:15:06 +01:00
isoImage.isoBaseName = lib.mkForce "nixos-isowo";
2023-02-26 22:32:26 +01:00
environment.systemPackages = with pkgs; [
2023-02-26 22:32:26 +01:00
nixfiles-auto-install
];
2025-01-16 19:15:06 +01:00
services.openssh.settings = {
PermitRootLogin = lib.mkForce "yes";
};
2023-02-26 18:45:26 +01:00
}