diff --git a/hosts/satori/hardware.nix b/hosts/satori/hardware.nix index b517c9b..bb28794 100644 --- a/hosts/satori/hardware.nix +++ b/hosts/satori/hardware.nix @@ -19,14 +19,14 @@ fsType = "vfat"; }; - fileSystems."/mnt/ntfs" = + fileSystems."/media/ntfs" = { device = "/dev/disk/by-uuid/A4CC66B6CC668282"; fsType = "ntfs"; options = [ "uid=natto" "gid=users" "umask=0022" "rw" ]; }; - fileSystems."/mnt/real" = + fileSystems."/media/real" = { device = "/dev/disk/by-uuid/6372bc0c-0917-469d-a845-2ce65513e306"; fsType = "ext4"; diff --git a/hosts/satori/networking.nix b/hosts/satori/networking.nix index 55cba73..4e4f98a 100644 --- a/hosts/satori/networking.nix +++ b/hosts/satori/networking.nix @@ -12,6 +12,16 @@ allowedUDPPorts = [ 22 17840 18172 ]; trustedInterfaces = [ "docker0" ]; }; + interfaces = { + enp7s0 = { + useDHCP = true; + ipv4.addresses = [{ + prefixLength = 24; + address = "192.168.1.109"; + }]; + }; + }; + wireguard.interfaces.wg0 = { ips = [ "10.55.0.3/32" ]; listenPort = 17840; diff --git a/hosts/satori/services.nix b/hosts/satori/services.nix index 4f36f2d..dd4dd2a 100644 --- a/hosts/satori/services.nix +++ b/hosts/satori/services.nix @@ -14,6 +14,7 @@ ACTION=="add|change", KERNEL=="sda", ATTR{queue/rotational}=="0", ATTR{queue/scheduler}="bfq" ''; zfs.autoScrub.enable = true; + gvfs.enable = true; logind.extraConfig = "RuntimeDirectorySize=30%"; }; systemd.services.tor.wantedBy = lib.mkForce [ ];