Adding Parents Device

This commit is contained in:
Annika Merris 2024-09-04 10:09:19 -04:00
parent f11ae539c1
commit 56278c47b5
8 changed files with 203 additions and 11 deletions

View file

@ -0,0 +1,14 @@
{ config, lib, pkgs, ... }: {
# Stuff for nixos-anywhere
boot.loader.grub = {
efiSupport = true;
efiInstallAsRemovable = true;
};
environment.systemPackages = map lib.lowPrio [ pkgs.curl pkgs.gitMinimal ];
users.users.root.openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIG9NhsAOBwWBdBeenfaPoRtqQrAIgg7E5m4sKYQU9cFx annika@kim"
];
}