NixOS + home-manager configs, mirrored from GitLab SaaS. gitlab.com/andreijiroh-dev/nixops-config
nix-flake nixos home-manager nixpkgs nix-flakes
1
fork

Configure Feed

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

at main 68 lines 1.8 kB view raw
1# An static list of host entries to be used in networking.hosts configuration. 2# You probably want to use this inside a let...in block, see the example 3# at ../hosts/stellapent-cier/configuration.nix for the hints. 4{ 5 localhost = [ 6 "localhost" 7 "localdev.andreijiroh.dev" 8 "localdev.andreijiroh.eu.org" 9 ]; 10 localNetwork = { 11 halilifam = { 12 "192.168.254.160" = [ 13 #"stellapent-cier" 14 "stellapent-cier.local" 15 "stellapent.local" 16 ]; 17 "192.168.254.179" = [ 18 "rpi-aether.local" 19 "aether.local" 20 ]; 21 "192.168.254.190" = [ 22 "lairland.local" 23 ]; 24 }; 25 }; 26 27 # hosts file for my Tailscale network, even with 28 # MagicDNS disabled as a workaround. 29 tailnet = { 30 "100.87.227.94" = [ 31 "stellapent-cier" 32 "stellapent-cier.tailnet" 33 "stellapent-cier.fawn-cod.ts.net" 34 "stellapent-cier.fawn-cod.tailnet" 35 "stellapent" 36 "stellapent.tailnet" 37 "stellapent.tailnet.andreijiroh.dev" 38 "stellapent.tailnet.andreijiroh.eu.org" 39 ]; 40 "100.120.57.47" = [ 41 "rpi-aether" 42 "rpi-aether.tailnet" 43 "rpi-aether.tailnet.andreijiroh.dev" 44 "rpi-aether.tailnet.andreijiroh.eu.org" 45 "aether" 46 "aether.tailnet" 47 "aether.tailnet.andreijiroh.dev" 48 "aether.tailnet.andreijiroh.eu.org" 49 ]; 50 "100.82.232.51" = [ 51 "lairland" 52 "lairland.tailnet" 53 "lairland.fawn-cod.ts.net" 54 "lairland.tailnet.andreijiroh.dev" 55 "lairland.tailnet.andreijiroh.eu.org" 56 ]; 57 "100.102.205.81" = [ 58 "go" 59 "go.tailnet" 60 "go.fawn-cod.ts.net" 61 ]; 62 "100.126.238.86" = [ 63 "paste" 64 "paste.tailnet" 65 "paste.fawn-cod.ts.net" 66 ]; 67 }; 68}