1
0
nixfiles/hosts/_iso/configuration.nix

21 lines
396 B
Nix

{ pkgs, lib, modulesPath, ... }:
{
imports = [
(modulesPath + "/installer/cd-dvd/installation-cd-base.nix")
../../configuration/gpg-ssh
];
networking.hostName = "isowo";
isoImage.isoBaseName = lib.mkForce "nixos-isowo";
environment.systemPackages = with pkgs; [
nixfiles-auto-install
];
services.openssh.settings = {
PermitRootLogin = lib.mkForce "yes";
};
}