nicks-nix-config/hosts/laptop/default.nix

46 lines
1.1 KiB
Nix
Raw Normal View History

2023-08-05 10:33:35 -07:00
{ config, ... }:
2022-11-08 19:08:54 -08:00
{
imports = [
./hardware-configuration.nix
];
2022-11-08 19:08:54 -08:00
2022-12-05 18:04:08 -08:00
hardware.bluetooth.enable = true;
networking.hosts = {
2023-08-05 10:43:08 -07:00
"10.0.0.183" = [ "headscale.nickiel.net" ];
"100.64.0.1" = ["files.nickiel.net" "git.nickiel.net" "nickiel.net" "jellyfin.nickiel.net" ];
};
2023-08-11 09:08:09 -07:00
# tailscale set --exit-node <SEVERNAME> to route through an exit node
services.tailscale.enable = true;
networking.firewall = {
checkReversePath = "loose";
trustedInterfaces = [ "tailscale0" ];
allowedUDPPorts = [ config.services.tailscale.port ];
};
2022-12-09 10:17:19 -08:00
time.hardwareClockInLocalTime = true;
2022-11-08 19:08:54 -08:00
boot.loader = {
efi = {
canTouchEfiVariables = true;
efiSysMountPoint = "/boot";
};
grub = {
devices = [ "nodev" ];
efiSupport = true;
enable = true;
useOSProber = false;
extraEntries = ''
menuentry 'Windows Boot Manager (on /dev/nvme0n1p1)' --class windows --class os $menuentry_id_option 'osprober-efi-364F-BE7A' {
insmod part_gpt
insmod fat
search --no-floppy --fs-uuid --set=root 364F-BE7A
chainloader /efi/Microsoft/Boot/bootmgfw.efi
}
'';
2022-11-08 19:08:54 -08:00
};
};
}