18 lines
508 B
Nix
18 lines
508 B
Nix
|
{lib, ...}: let
|
||
|
inherit (lib.marleyos) enabled;
|
||
|
in {
|
||
|
imports = [./hardware-configuration.nix];
|
||
|
|
||
|
boot.loader.systemd-boot.enable = true;
|
||
|
boot.loader.efi.canTouchEfiVariables = true;
|
||
|
|
||
|
networking.hostName = "marleynet";
|
||
|
|
||
|
users.users.marley.openssh.authorizedKeys.keys = [
|
||
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDcKsDGK8C5W6eRsJQSdAOTFVZnkKRWjnyn4iDR8zMi7 marley@nyx"
|
||
|
|
||
|
# iphone
|
||
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIM+hMOzQBPmi6Rjw7fYvwn43w1Dgk+GEooGPnQz2RTcK Generated By Termius"
|
||
|
];
|
||
|
}
|