Big readme update and more
Updated readme with tons of information. Made kazuki a hercules agent. Fixed secrets ownerships. Started working on a custom installer iso. Changed helix theme.
This commit is contained in:
parent
ef44ff6943
commit
fb0c1a4451
17 changed files with 164 additions and 39 deletions
|
@ -9,6 +9,7 @@ in {
|
|||
imports = [
|
||||
./hardware.nix
|
||||
# ./disks.nix
|
||||
./initrd.nix
|
||||
];
|
||||
|
||||
nixpkgs.system = "x86_64-linux";
|
||||
|
|
14
hosts/legion/initrd.nix
Normal file
14
hosts/legion/initrd.nix
Normal file
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
config,
|
||||
username,
|
||||
...
|
||||
}: {
|
||||
boot.initrd = {
|
||||
availableKernelModules = ["ath10k_pci" "r8169"];
|
||||
network.enable = true;
|
||||
network.ssh = {
|
||||
enable = true;
|
||||
authorizedKeys = config.users.users.${username}.openssh.authorizedKeys.keys;
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue