16 lines
245 B
Nix
16 lines
245 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
|
|
{
|
|
networking.extraHosts = "";
|
|
# fileSystems."/home/joe/media" = {
|
|
# device = "nas.5sigma.net:/share/media";
|
|
# fsType = "nfs";
|
|
# options = [ "x-systemd.automount" "noauto" "nofail" ];
|
|
# };
|
|
}
|