mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-01-11 22:30:25 +01:00
39 lines
1.2 KiB
Nix
39 lines
1.2 KiB
Nix
{
|
|
config,
|
|
myvars,
|
|
...
|
|
}:
|
|
{
|
|
# supported file systems, so we can mount any removable disks with these filesystems
|
|
boot.supportedFilesystems = [
|
|
# "cifs"
|
|
"davfs"
|
|
];
|
|
|
|
# mount a smb/cifs share
|
|
# fileSystems."/home/${myvars.username}/SMB-Downloads" = {
|
|
# device = "//windows-server-nas/Downloads";
|
|
# fsType = "cifs";
|
|
# options = [
|
|
# # https://www.freedesktop.org/software/systemd/man/latest/systemd.mount.html
|
|
# "nofail,_netdev"
|
|
# "uid=1000,gid=100,dir_mode=0755,file_mode=0755"
|
|
# "vers=3.0,credentials=${config.age.secrets.smb-credentials.path}"
|
|
# ];
|
|
# };
|
|
|
|
# mount a webdav share
|
|
# https://wiki.archlinux.org/title/Davfs2
|
|
# fileSystems."/home/${myvars.username}/webdav-downloads" = {
|
|
# device = "https://webdav.writefor.fun/Downloads";
|
|
# fsType = "davfs";
|
|
# options = [
|
|
# # https://www.freedesktop.org/software/systemd/man/latest/systemd.mount.html
|
|
# "nofail,_netdev"
|
|
# "uid=1000,gid=100,dir_mode=0755,file_mode=0755"
|
|
# ];
|
|
# };
|
|
# davfs2 reads its credentials from /etc/davfs2/secrets
|
|
# environment.etc."davfs2/secrets".source = config.age.secrets."davfs-secrets".path;
|
|
}
|