25 lines
572 B
Nix
25 lines
572 B
Nix
|
{ modulesPath, config, lib, pkgs, ... }: {
|
||
|
imports = [
|
||
|
(modulesPath + "/installer/scan/not-detected.nix")
|
||
|
(modulesPath + "/profiles/qemu-guest.nix")
|
||
|
];
|
||
|
|
||
|
boot.loader = {
|
||
|
systemd-boot.enable = true;
|
||
|
efi.canTouchEfiVariables = true;
|
||
|
};
|
||
|
|
||
|
services.openssh.enable = true;
|
||
|
|
||
|
environment.systemPackages = map lib.lowPrio [
|
||
|
pkgs.curl
|
||
|
pkgs.gitMinimal
|
||
|
];
|
||
|
|
||
|
users.users.root.openssh.authorizedKeys.keys = [
|
||
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIA/+iN407+HsfHbbC3tfdA8Yf4TZ08qXQMb4tb/SDAs+ emily@card"
|
||
|
];
|
||
|
|
||
|
system.stateVersion = "23.11";
|
||
|
}
|