mirror of
https://forgejo.merr.is/annika/nixos.git
synced 2025-12-12 13:03:28 -05:00
15 lines
381 B
Nix
15 lines
381 B
Nix
|
|
{ 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"
|
||
|
|
];
|
||
|
|
|
||
|
|
}
|