diff options
| author | 2025-01-13 22:43:02 -0500 | |
|---|---|---|
| committer | 2025-01-13 22:43:02 -0500 | |
| commit | dce9ab07ae0b0496e432f213466fd6f442944fa7 (patch) | |
| tree | 74ea43a6771d244e04c1f8a33a61750cda0bdac1 /hosts/yashinoki | |
| parent | 2d35d8e272b4d5725c686be5d2b4436a55fe8141 (diff) | |
| download | dotfiles-dce9ab07ae0b0496e432f213466fd6f442944fa7.tar.gz dotfiles-dce9ab07ae0b0496e432f213466fd6f442944fa7.tar.bz2 dotfiles-dce9ab07ae0b0496e432f213466fd6f442944fa7.zip | |
Improve NFS options, misc stuff
Diffstat (limited to 'hosts/yashinoki')
| -rw-r--r-- | hosts/yashinoki/configuration.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hosts/yashinoki/configuration.nix b/hosts/yashinoki/configuration.nix index 86d9d8b..8e8b262 100644 --- a/hosts/yashinoki/configuration.nix +++ b/hosts/yashinoki/configuration.nix @@ -1,7 +1,7 @@ { config, lib, pkgs, ... }: let s = config.local; - inherit (import ../../nix/utils.nix) disks; + inherit (import ../../nix/settings.nix) disks; in { imports = [ ./hardware-configuration.nix @@ -124,7 +124,7 @@ in { users.users.andrew.extraGroups = [ "networkmanager" ]; fileSystems."/home/andrew/c" = { - device = "192.168.1.206:/home/andrew/c"; + device = "moyo:/srv/nfs/c"; fsType = "nfs4"; options = disks.nfs_options; }; |