Updated readme with tons of information. Made kazuki a hercules agent. Fixed secrets ownerships. Started working on a custom installer iso. Changed helix theme.
14 lines
271 B
Nix
14 lines
271 B
Nix
{
|
|
config,
|
|
username,
|
|
...
|
|
}: {
|
|
boot.initrd = {
|
|
availableKernelModules = ["ath10k_pci" "r8169"];
|
|
network.enable = true;
|
|
network.ssh = {
|
|
enable = true;
|
|
authorizedKeys = config.users.users.${username}.openssh.authorizedKeys.keys;
|
|
};
|
|
};
|
|
}
|