dotfiles/generators/staff/default.nix

18 lines
379 B
Nix
Raw Normal View History

2023-02-18 10:24:54 -05:00
# The Staff
# ISO configuration for my USB drive
2023-02-20 20:45:56 -05:00
{ inputs, system, ... }:
2023-02-18 10:24:54 -05:00
with inputs;
nixos-generators.nixosGenerate {
inherit system;
format = "install-iso";
modules = [{
networking.hostName = "staff";
users.extraUsers.root.openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIB+AbmjGEwITk5CK9y7+Rg27Fokgj9QEjgc9wST6MA3s"
];
}];
}