2
0

add etc/hosts to base module

this is hardcoded to localhost only.  it would be better to have
a config option to allow defining static hosts
This commit is contained in:
2025-11-04 21:53:02 +00:00
parent 7261ef8b21
commit e49f8055f3
+6 -1
View File
@@ -211,9 +211,14 @@ in
export PATH
''
);
hosts = symlink (
pkgs.writeText "hosts" ''
127.0.0.1 localhost
''
);
in
dir {
inherit profile;
inherit hosts profile;
ashrc = profile;
};