From 8d922e9b4822688bed42296405026a42c7d12917 Mon Sep 17 00:00:00 2001 From: Leon Vatthauer Date: Mon, 20 May 2024 22:11:41 +0200 Subject: [PATCH] change hostname for iso --- iso/configuration.nix | 23 ++--------------------- 1 file changed, 2 insertions(+), 21 deletions(-) diff --git a/iso/configuration.nix b/iso/configuration.nix index a22999f..bb5b225 100644 --- a/iso/configuration.nix +++ b/iso/configuration.nix @@ -9,7 +9,7 @@ initialPassword = "leonv"; }; - networking.hostName = "gunther"; # Define your hostname. + networking.hostName = "iso"; # Define your hostname. # Enable networking networking.networkmanager = { enable = true; @@ -68,25 +68,6 @@ system.stateVersion = "23.11"; # Did you read the comment? - # NFS setup - services.rpcbind.enable = true; # needed for NFS - systemd.mounts = [{ - type = "nfs"; - mountConfig = { - Options = "noatime"; - }; - what = "192.168.178.20:/volume1/MiniDrive"; - where = "/MiniDrive"; - }]; - - systemd.automounts = [{ - wantedBy = [ "multi-user.target" ]; - automountConfig = { - TimeoutIdleSec = "10"; - }; - where = "/MiniDrive"; - }]; - # source zsh programs.zsh.enable = true; users.defaultUserShell = pkgs.zsh; @@ -102,4 +83,4 @@ # flakes nix.settings.experimental-features = [ "nix-command" "flakes" ]; -} \ No newline at end of file +}