Merge branch 'nixos' of github.com:MoritzBoehme/dotfiles into nixos

This commit is contained in:
Moritz Böhme 2021-10-08 21:02:29 +02:00
commit 7073aa8aec
9 changed files with 47 additions and 73 deletions

View file

@ -69,5 +69,19 @@
];
ports = [ "8989:8989" ];
};
"bazarr" = {
image = "linuxserver/bazarr";
environment = {
"PUID" = "1000";
"PGID" = "100";
"TZ" = "DE";
};
volumes = [
"/media/media/tv:/tv"
"/media/media/movies:/movies"
"/home/moritz/Docker/Bazarr:/config"
];
ports = [ "6767:6767" ];
};
};
}

View file

@ -32,6 +32,12 @@
home.username = "moritz";
home.homeDirectory = "/home/moritz";
home.sessionPath = [ "/home/moritz/bin" ];
home.file."bin" = {
recursive = true;
source = ../bin;
};
xdg.userDirs = {
enable = true;
createDirectories = true;