Files
nixos/hosts/exodus/default.nix
T
2024-05-05 21:32:57 -05:00

21 lines
299 B
Nix

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