Fix for wrong IP address in nfs export, changed luci term theme

This commit is contained in:
Nathan Anderson 2024-03-18 08:45:54 -06:00
parent f444961d8e
commit 44fe27911a
2 changed files with 2 additions and 2 deletions

View File

@ -70,7 +70,7 @@ in
oh-my-zsh = { oh-my-zsh = {
enable = true; enable = true;
plugins = [ "git" ]; plugins = [ "git" ];
theme = "half-life"; theme = "dieter";
}; };
initExtra = '' initExtra = ''
eval "$(direnv hook zsh)" eval "$(direnv hook zsh)"

View File

@ -73,7 +73,7 @@ in
services.nfs.server = lib.mkIf srvConfig.nfsEnable { services.nfs.server = lib.mkIf srvConfig.nfsEnable {
enable = true; enable = true;
exports = '' exports = ''
/nfs_export 1192.168.1.149(rw,fsid=0,no_subtree_check) /nfs_export 192.168.1.149(rw,fsid=0,no_subtree_check)
''; '';
}; };