21 lines
460 B
Nix
21 lines
460 B
Nix
{ inputs, outputs, lib, config, pkgs, ... }: {
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
../server
|
|
./docker.nix
|
|
# ./podman.nix
|
|
../server/searxng.nix
|
|
# ../server/unifi.nix
|
|
];
|
|
networking.hostName = "fred";
|
|
boot = {
|
|
binfmt.emulatedSystems = [ "aarch64-linux" ];
|
|
loader = {
|
|
systemd-boot = { enable = true; };
|
|
efi = {
|
|
canTouchEfiVariables = true;
|
|
efiSysMountPoint = "/boot";
|
|
};
|
|
};
|
|
};
|
|
}
|