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;
|
|
|
|
|
};
|
|
|
|
|
}
|