This repository has been archived on 2024-07-08. You can view files and clone it, but cannot push or open issues or pull requests.
nix-config-tn/iso/iso.nix

28 lines
672 B
Nix
Raw Normal View History

2024-03-17 05:44:59 -05:00
{
2024-03-17 16:04:32 -05:00
config,
pkgs,
...
}: {
2024-03-17 05:44:59 -05:00
imports = [
<nixpkgs/nixos/modules/installer/cd-dvd/installation-cd-minimal.nix>
# Provide an initial copy of the NixOS channel so that the user
# doesn't need to run "nix-channel --update" first.
# <nixpkgs/nixos/modules/installer/cd-dvd/channel.nix>
];
environment.systemPackages = [
pkgs.jq
pkgs.yq
pkgs.unixtools.top
pkgs.vim
pkgs.git
pkgs.dnsutils
];
2024-03-17 16:04:32 -05:00
systemd.services.sshd.wantedBy = pkgs.lib.mkForce ["multi-user.target"];
2024-03-17 05:44:59 -05:00
users.users.root.openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMZS9J1ydflZ4iJdJgO8+vnN8nNSlEwyn9tbWU9OcysW truxnell@home"
];
}