Files
nixos/hosts/exodus/default.nix
T

25 lines
372 B
Nix
Raw Normal View History

2024-10-03 15:21:56 -05:00
{ ... }:
2024-05-05 14:37:58 -05:00
{
imports = [
./hardware-configuration.nix
];
2024-05-05 14:37:58 -05:00
boot.loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
2024-05-05 14:37:58 -05:00
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
}