❄️ Nix configurations
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

remove media from ferret

A. Ottr 8850d818 a54590f1

+13 -13
+2 -2
nixos/ferret/default.nix
··· 5 5 ./configuration.nix 6 6 ./hardware-configuration.nix 7 7 ../common/postgres.nix 8 - ./media.nix 8 + # ./media.nix 9 9 ./caddy.nix 10 10 ./paperless.nix 11 11 ./miniflux.nix 12 12 # ./adguard.nix 13 13 14 - ./tailscale-splitdns.nix 14 + # ./tailscale-splitdns.nix 15 15 ]; 16 16 17 17 security.polkit.enable = true;
+11 -11
nixos/ferret/hardware-configuration.nix
··· 20 20 }; 21 21 22 22 swapDevices = [{ device = "/dev/disk/by-uuid/d96908d3-b46e-40c2-a5e0-82b71196899c"; }]; 23 - networking.useDHCP = false; 24 - networking.interfaces.enp2s0.ipv4.addresses = [ 25 - { 26 - address = "192.168.1.10"; 27 - prefixLength = 24; 28 - } 29 - ]; 30 - networking.defaultGateway = { 31 - address = "192.168.1.1"; 32 - interface = "enp2s0"; 33 - }; 23 + networking.useDHCP = lib.mkForce true; 24 + # networking.interfaces.enp2s0.ipv4.addresses = [ 25 + # { 26 + # address = "192.168.1.10"; 27 + # prefixLength = 24; 28 + # } 29 + # ]; 30 + # networking.defaultGateway = { 31 + # address = "192.168.1.1"; 32 + # interface = "enp2s0"; 33 + # }; 34 34 networking.useNetworkd = true; 35 35 # networking.interfaces.enp2s0.useDHCP = lib.mkDefault true; 36 36 # networking.interfaces.wlo1.useDHCP = lib.mkDefault true;