diff options
| author | kdam0 <me@kumardamani.net> | 2023-03-24 20:08:12 +0000 |
|---|---|---|
| committer | kdam0 <me@kumardamani.net> | 2023-03-24 20:08:12 +0000 |
| commit | a121e90309adfdfdd78f5193036b9df280785167 (patch) | |
| tree | 0c766a61d2459e7c59f4251fdcb0cbcde2863e5d | |
| parent | 1f1a8e013e95c00e20a49d35f75acf5ed2fae2e3 (diff) | |
hosts file
| -rw-r--r-- | nixpkgs/.config/nixpkgs/hosts.nix | 9 |
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 +''; +} |
