mirror of
https://github.com/dolphin-emu/sadm.git
synced 2026-01-31 01:05:23 +01:00
40 lines
985 B
Nix
40 lines
985 B
Nix
{ self, pkgs, agenix, nixpkgs, ... }:
|
|
|
|
let
|
|
my = import ../..;
|
|
in {
|
|
imports = [
|
|
agenix.nixosModule
|
|
|
|
my.modules
|
|
|
|
./hypervisor.nix
|
|
./hardware.nix
|
|
./postgres.nix
|
|
];
|
|
|
|
services.openssh.enable = true;
|
|
services.openssh.permitRootLogin = "prohibit-password";
|
|
users.users.root.openssh.authorizedKeys.keys = [ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAII3tjB4KYDok3KlWxdBp/yEmqhhmybd+w0VO4xUwLKKV" ];
|
|
|
|
nix.nixPath = [ "nixpkgs=${nixpkgs}" ];
|
|
|
|
# Network configuration.
|
|
networking.firewall.allowPing = true;
|
|
networking.firewall.logRefusedConnections = false;
|
|
|
|
networking.hostName = "altair";
|
|
networking.domain = "dolphin-emu.org";
|
|
networking.search = [ "dolphin-emu.org" ];
|
|
|
|
my.roles = {
|
|
netplay-index.enable = true;
|
|
redirector.enable = true;
|
|
};
|
|
|
|
my.http.vhosts."altair.dolphin-emu.org".redirect = "https://github.com/dolphin-emu/sadm";
|
|
|
|
system.stateVersion = "22.05";
|
|
system.configurationRevision = pkgs.lib.mkIf (self ? rev) self.rev;
|
|
}
|