|
|
@ -10,6 +10,7 @@ |
|
|
|
./hardware-configuration.nix |
|
|
|
./home.nix |
|
|
|
../../common/fragments/avahi.nix |
|
|
|
../../common/fragments/syncthing.nix |
|
|
|
]; |
|
|
|
|
|
|
|
# Use the systemd-boot EFI boot loader. |
|
|
@ -19,6 +20,14 @@ |
|
|
|
networking.hostName = "felonyspork"; # Define your hostname. |
|
|
|
networking.wireless.enable = false; # Enables wireless support via wpa_supplicant. |
|
|
|
|
|
|
|
# Enable NFS to Moria |
|
|
|
fileSystems."/mnt/moria" = { |
|
|
|
device = "moria.local:/volume1/NetworkStore"; |
|
|
|
fsType = "nfs"; |
|
|
|
}; |
|
|
|
|
|
|
|
services.syncthing.dataDir = "/mnt/moria/felonyspork/Sync"; |
|
|
|
|
|
|
|
# Set your time zone. |
|
|
|
time.timeZone = "America/Chicago"; |
|
|
|
|
|
|
|