Files
nixos/hosts/exodus/default.nix
T

21 lines
299 B
Nix
Raw Normal View History

2024-05-05 14:37:58 -05:00
{ pkgs, config, ... }:
{
2024-05-05 21:32:57 -05:00
imports = [
./hardware-configuration.nix
../jude/printing.nix
];
2024-05-05 14:37:58 -05:00
boot.loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
networking.hostName = "exodus";
greg = {
home = true;
gnome.enable = true;
tailscale.enable = true;
};
}