switching all smb to nfs

This commit is contained in:
Matt Nish-Lapidus 2025-04-05 14:37:22 -04:00
parent 0b53ae3b9c
commit b0c634ab81
3 changed files with 4 additions and 8 deletions

View file

@ -13,7 +13,7 @@
./hardware-configuration.nix
./razer-speaker-fix.nix
sops-config
# sops-config
niri
kanata
filesystems-filez
@ -81,10 +81,6 @@
# Select internationalisation properties.
i18n.defaultLocale = "en_CA.UTF-8";
sops-config = {
key-file = "/home/emenel/.config/sops/age/keys.txt";
};
console = {
earlySetup = true;
colors =

View file

@ -3,7 +3,7 @@
{
imports = with nix-config.nixosModules; [
./hardware-configuration.nix
sops-config
# sops-config
filesystems-filez
];

View file

@ -3,11 +3,11 @@
{
fileSystems =
let
opts = [ "nfsvers=4.1" "noatime" "noauto" "x-systemd.automount" ];
opts = [ "noatime" "noauto" "x-systemd.automount" ];
in {
"/mnt/import" = {
device = "media-server:/import";
device = "media-server:/export/import";
fsType = "nfs";
options = opts;
};