35 lines
828 B
Nix
35 lines
828 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
pkgsUnstable,
|
|
inputs,
|
|
...
|
|
}:
|
|
{
|
|
boot.loader.systemd-boot.enable = true;
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
|
|
network-dhcp = {
|
|
enable = true;
|
|
hardwareAddress = "BC:24:11:1B:47:AF";
|
|
};
|
|
qemu.enable = true;
|
|
spice.enable = true;
|
|
|
|
sops.secrets = {
|
|
"crowdsec/firewallBouncerLapiKey" = { };
|
|
};
|
|
|
|
crowdsec-firewall-bouncer = {
|
|
enable = false;
|
|
apiKeyFile = config.sops.secrets."crowdsec/firewallBouncerLapiKey".path;
|
|
};
|
|
|
|
base.userSSHKeys = [
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILiUy2yjIkdryH7pYMdkCNryy9gceqXJ7bhtMvvpPBIk etorres@xenon"
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILPByHF+TF/4rsMtZ+HxZfwmNi83sia5t+OHjn8X7BHn etorres@radon"
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMNNR14i2eqvBLIhWY6yUO+GgFW8L+NGBoDjMUTonE8u etorres@erics-mac"
|
|
];
|
|
}
|