Merge branch 'nixos' of github.com:MoritzBoehme/dotfiles into nixos
This commit is contained in:
commit
7073aa8aec
9 changed files with 47 additions and 73 deletions
|
|
@ -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" ];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue