Files
nixos/hosts/exodus/default.nix
T
Greg Hellings 67e626c470 Add a direct mount of the Btrfs on Jeremiah
Add a mountpoint for the root Btrfs volume on Jeremiah so that the root
of the volume can be accessed
Also, create and mount a PVE subvol for fiddling around with the Btrfs
suport in PVE
2025-04-17 16:52:11 -05:00

39 lines
693 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";
networkmanager.enable = lib.mkForce true;
};
virtualisation = {
podman.enable = true;
oci-containers.backend = "podman";
};
}