18 lines
273 B
Nix
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;
|
|
};
|
|
}
|