Files
nixos/hosts/exodus/default.nix
T

25 lines
386 B
Nix
Raw Normal View History

2024-05-05 14:37:58 -05:00
{ pkgs, config, ... }:
{
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
}