1
0
Fork 0
dotfiles/system/nixos/mediaserver-setup.nix

116 lines
2.7 KiB
Nix
Raw Normal View History

2023-04-15 20:04:09 +02:00
{ pkgs, ... }:
2023-04-15 19:43:09 +02:00
{
2023-04-15 19:45:16 +02:00
users.groups.media_group = {
gid = 2001;
};
2023-04-15 19:43:09 +02:00
users.users.media_user = {
uid = 1001;
2023-04-15 19:45:16 +02:00
group = "media_group";
isSystemUser = true;
description = "Media User";
home = "/var/lib/media_user";
createHome = true;
autoSubUidGidRange = true;
2023-04-15 19:43:09 +02:00
};
2023-04-15 20:12:26 +02:00
boot.supportedFilesystems = [ "nfs" ];
2023-04-15 20:04:09 +02:00
environment.systemPackages = [ pkgs.nfs-utils ];
2023-04-15 19:43:09 +02:00
services.rpcbind.enable = true;
2023-04-15 19:51:58 +02:00
systemd = {
mounts = [
{
2023-04-27 23:49:05 +02:00
wantedBy = [ "multi-user.target" ];
2023-04-15 19:51:58 +02:00
type = "nfs";
mountConfig = {
Options = "noatime,nconnect=16";
2023-04-15 19:51:58 +02:00
};
what = "10.0.0.100:/mnt/dozer/downloads";
where = "/mnt/downloads";
}
2023-04-15 23:29:25 +02:00
{
2023-04-27 23:49:05 +02:00
wantedBy = [ "multi-user.target" ];
2023-04-15 23:29:25 +02:00
type = "nfs";
mountConfig = {
Options = "noatime,nconnect=16";
2023-04-15 23:29:25 +02:00
};
what = "10.0.0.100:/mnt/dozer/media/TV Shows";
where = "/mnt/media/TV Shows";
}
{
2023-04-27 23:49:05 +02:00
wantedBy = [ "multi-user.target" ];
2023-04-15 23:29:25 +02:00
type = "nfs";
mountConfig = {
Options = "noatime,nconnect=16";
2023-04-15 23:29:25 +02:00
};
what = "10.0.0.100:/mnt/dozer/media/Documentaries";
where = "/mnt/media/Documentaries";
}
{
2023-04-27 23:49:05 +02:00
wantedBy = [ "multi-user.target" ];
2023-04-15 23:29:25 +02:00
type = "nfs";
mountConfig = {
Options = "noatime,nconnect=16";
2023-04-15 23:29:25 +02:00
};
what = "10.0.0.100:/mnt/dozer/MediaVault/Anime";
where = "/mnt/media/Anime";
}
{
2023-04-27 23:49:05 +02:00
wantedBy = [ "multi-user.target" ];
2023-04-15 23:29:25 +02:00
type = "nfs";
mountConfig = {
Options = "noatime,nconnect=16";
2023-04-15 23:29:25 +02:00
};
what = "10.0.0.100:/mnt/dozer/media/Movies";
where = "/mnt/media/Movies";
}
2023-04-19 21:30:42 +02:00
{
2023-04-27 23:49:05 +02:00
wantedBy = [ "multi-user.target" ];
2023-04-19 21:30:42 +02:00
type = "nfs";
mountConfig = {
Options = "noatime,nconnect=16";
2023-04-19 21:30:42 +02:00
};
what = "10.0.0.100:/mnt/dozer/MediaVault/Deutsche Serien";
where = "/mnt/media/Deutsche Serien";
}
{
2023-04-27 23:49:05 +02:00
wantedBy = [ "multi-user.target" ];
2023-04-19 21:30:42 +02:00
type = "nfs";
mountConfig = {
Options = "noatime,nconnect=16";
2023-04-19 21:30:42 +02:00
};
what = "10.0.0.100:/mnt/dozer/media/Deutsche Filme";
where = "/mnt/media/Deutsche Filme";
}
2023-04-20 12:30:16 +02:00
{
2023-04-27 23:49:05 +02:00
wantedBy = [ "multi-user.target" ];
2023-04-20 12:30:16 +02:00
type = "nfs";
mountConfig = {
Options = "noatime,nconnect=16";
2023-04-20 12:30:16 +02:00
};
what = "10.0.0.100:/mnt/dozer/MediaVault/YTDL";
where = "/mnt/media/YTDL";
}
2023-05-05 22:31:17 +02:00
{
wantedBy = [ "multi-user.target" ];
type = "nfs";
mountConfig = {
Options = "noatime,nconnect=16";
};
2023-05-06 23:36:41 +02:00
what = "10.0.0.100:/mnt/dozer/JailVault/media-scraper";
2023-05-05 22:31:17 +02:00
where = "/mnt/media-scraper";
}
2023-04-15 19:51:58 +02:00
];
};
2023-04-15 19:43:09 +02:00
}