Files
nixos/hosts/exodus/default.nix
T
2025-02-15 13:01:20 -06:00

36 lines
634 B
Nix

{ config, ... }:
{
imports = [ ./hardware-configuration.nix ];
boot = {
loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
binfmt.emulatedSystems = [
"i686-linux"
"aarch64-linux"
];
};
greg = {
home = true;
gnome.enable = true;
print.enable = true;
tailscale.enable = true;
vmdev = {
enable = true;
system = "intel";
};
};
nix.settings.extra-platforms = config.boot.binfmt.emulatedSystems;
networking.hostName = "exodus";
virtualisation = {
podman.enable = true;
oci-containers.backend = "podman";
};
}