22 lines
555 B
Nix
22 lines
555 B
Nix
{ inputs, outputs, lib, config, pkgs, ... }: {
|
|
imports = [
|
|
../templates/server.nix
|
|
./hardware-configuration.nix
|
|
./docker.nix
|
|
];
|
|
|
|
networking.hostName = "fred";
|
|
variables.address = "100.72.236.170";
|
|
# boot = {
|
|
# binfmt.emulatedSystems = lib.optionals (pkgs.stdenv.hostPlatform.system != "aarch64-linux") [ "aarch64-linux" ];
|
|
# loader = {
|
|
# systemd-boot = {enable = true;};
|
|
# efi = {
|
|
# canTouchEfiVariables = true;
|
|
# efiSysMountPoint = "/boot";
|
|
# };
|
|
# };
|
|
# };
|
|
|
|
primary.enable = true;
|
|
}
|