mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 06:22:56 +00:00
18 lines
398 B
Nix
18 lines
398 B
Nix
# The Staff
|
|
# ISO configuration for my USB drive
|
|
|
|
{ inputs, globals, system, overlays, ... }:
|
|
|
|
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"
|
|
];
|
|
}];
|
|
}
|