2025-04-17 20:17:58 -05:00
|
|
|
{ config, lib, ... }:
|
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-10-03 11:26:39 -05:00
|
|
|
};
|
|
|
|
|
greg = {
|
|
|
|
|
home = true;
|
|
|
|
|
gnome.enable = true;
|
|
|
|
|
print.enable = true;
|
|
|
|
|
tailscale.enable = true;
|
|
|
|
|
vmdev = {
|
|
|
|
|
enable = true;
|
|
|
|
|
system = "intel";
|
|
|
|
|
};
|
|
|
|
|
};
|
2025-02-15 13:01:20 -06:00
|
|
|
|
|
|
|
|
nix.settings.extra-platforms = config.boot.binfmt.emulatedSystems;
|
|
|
|
|
|
2025-04-17 16:52:11 -05:00
|
|
|
networking = {
|
|
|
|
|
hostName = "exodus";
|
|
|
|
|
networkmanager.enable = lib.mkForce true;
|
|
|
|
|
};
|
2025-02-15 13:01:20 -06:00
|
|
|
|
|
|
|
|
virtualisation = {
|
|
|
|
|
podman.enable = true;
|
|
|
|
|
oci-containers.backend = "podman";
|
|
|
|
|
};
|
2024-05-05 14:37:58 -05:00
|
|
|
}
|