aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs
diff options
context:
space:
mode:
authorkdam0 <me@kumardamani.net>2023-03-24 20:08:12 +0000
committerkdam0 <me@kumardamani.net>2023-03-24 20:08:12 +0000
commita121e90309adfdfdd78f5193036b9df280785167 (patch)
tree0c766a61d2459e7c59f4251fdcb0cbcde2863e5d /nixpkgs
parent1f1a8e013e95c00e20a49d35f75acf5ed2fae2e3 (diff)
hosts file
Diffstat (limited to 'nixpkgs')
-rw-r--r--nixpkgs/.config/nixpkgs/hosts.nix9
1 files changed, 9 insertions, 0 deletions
diff --git a/nixpkgs/.config/nixpkgs/hosts.nix b/nixpkgs/.config/nixpkgs/hosts.nix
new file mode 100644
index 0000000..a649ec2
--- /dev/null
+++ b/nixpkgs/.config/nixpkgs/hosts.nix
@@ -0,0 +1,9 @@
+{ config, pkgs, ... }:
+
+{ networking.extraHosts = ''
+# Your /etc/hosts entries go here
+127.0.0.2 other-localhost
+
+192.168.0.86 art-jr
+'';
+}