Files
nixos/hosts/exodus/default.nix
T
2024-05-05 14:49:17 -05:00

18 lines
273 B
Nix

{ pkgs, config, ... }:
{
imports = [ ./hardware-configuration.nix ];
boot.loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
networking.hostName = "exodus";
greg = {
home = true;
gnome.enable = true;
tailscale.enable = true;
};
}