Files
nixos/hosts/exodus/default.nix
T
2025-04-30 23:13:58 -05:00

47 lines
768 B
Nix

{
config,
lib,
pkgs,
...
}:
{
imports = [ ./hardware-configuration.nix ];
boot = {
loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
binfmt.emulatedSystems = [
"i686-linux"
"aarch64-linux"
];
};
environment.defaultPackages = [ pkgs.code-cursor ];
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";
networkmanager.enable = lib.mkForce true;
};
virtualisation = {
podman.enable = true;
oci-containers.backend = "podman";
};
}