summaryrefslogtreecommitdiff
path: root/nix_archive/nix/settings.nix
blob: 743529c3cde4914248981e06e3d71f2cde3b36e2 (plain)
1
2
3
4
5
6
7
8
{
  disks = {
    nfs_options = [ "noatime" "nodiratime" "rw" "bg" "hard" "fsc" "proto=tcp" "timeo=600" "nfsvers=4" "minorversion=2" "x-systemd.automount" "noauto" "x-systemd.idle-timeout=60" "x-systemd.device-timeout=5s" "x-systemd.mount-timeout=5s" ];
    hdd_options = [ "noatime" ];
    cdrom_options = [ "ro" "user" "noauto" "unhide" ];
    ntfs_options = [ "uid=1000" "gid=100" "rw" "user" "exec" "umask=000" ];
  };
}