From 44fe27911a26906077adcc5a9216dd0e9f7be5fb Mon Sep 17 00:00:00 2001 From: Nathan Anderson Date: Mon, 18 Mar 2024 08:45:54 -0600 Subject: [PATCH] Fix for wrong IP address in nfs export, changed luci term theme --- luci/modules/home-manager/home.nix | 2 +- shared/server-configuration.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/luci/modules/home-manager/home.nix b/luci/modules/home-manager/home.nix index 56ae56d..02a6d9d 100644 --- a/luci/modules/home-manager/home.nix +++ b/luci/modules/home-manager/home.nix @@ -70,7 +70,7 @@ in oh-my-zsh = { enable = true; plugins = [ "git" ]; - theme = "half-life"; + theme = "dieter"; }; initExtra = '' eval "$(direnv hook zsh)" diff --git a/shared/server-configuration.nix b/shared/server-configuration.nix index 14ca98f..1c31d16 100644 --- a/shared/server-configuration.nix +++ b/shared/server-configuration.nix @@ -73,7 +73,7 @@ in services.nfs.server = lib.mkIf srvConfig.nfsEnable { enable = true; 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) ''; };