Files
nixos/hosts/exodus/default.nix
T

31 lines
542 B
Nix
Raw Normal View History

2024-10-18 09:12:37 -05:00
{ config, ... }:
2024-05-05 14:37:58 -05:00
{
2024-10-18 09:12:37 -05:00
imports = [ ./hardware-configuration.nix ];
2024-05-05 14:37:58 -05:00
2024-10-18 09:12:37 -05:00
boot = {
loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
binfmt.emulatedSystems = [
"i686-linux"
"aarch64-linux"
];
};
2024-05-05 14:37:58 -05:00
2024-10-18 09:12:37 -05:00
nix.settings.extra-platforms = config.boot.binfmt.emulatedSystems;
networking.hostName = "exodus";
greg = {
home = true;
gnome.enable = true;
print.enable = true;
tailscale.enable = true;
vmdev = {
enable = true;
system = "intel";
};
};
2024-05-05 14:37:58 -05:00
}