improvements
This commit is contained in:
parent
227f51f937
commit
9fec2c53c5
5 changed files with 13 additions and 1 deletions
|
@ -6,6 +6,7 @@
|
|||
./hardware-configuration.nix
|
||||
|
||||
./mail-fetcher.nix
|
||||
./packages.nix
|
||||
#./home-assistant.nix
|
||||
#./kodi.nix
|
||||
./syncthing.nix
|
||||
|
|
8
nixos/configs/pepe/packages.nix
Normal file
8
nixos/configs/pepe/packages.nix
Normal file
|
@ -0,0 +1,8 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
environment.systemPackages = [
|
||||
pkgs.mediainfo
|
||||
pkgs.youtube-dl
|
||||
];
|
||||
}
|
|
@ -9,6 +9,7 @@
|
|||
music = config.services.syncthing.declarative.folders.music-library.path;
|
||||
samples = config.services.syncthing.declarative.folders.samples.path;
|
||||
series = config.services.syncthing.declarative.folders.series.path;
|
||||
series2 = "/media/series";
|
||||
books = config.services.syncthing.declarative.folders.books.path;
|
||||
};
|
||||
#private.test = {
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
{ config, pkgs, ... }: {
|
||||
environment.systemPackages = with pkgs; [
|
||||
mosh
|
||||
mediainfo
|
||||
youtube-dl
|
||||
];
|
||||
}
|
||||
|
|
|
@ -287,7 +287,7 @@ in
|
|||
# [ 5044 12304 12305 ];
|
||||
|
||||
# host nginx setup
|
||||
# curl transmission.robi.private < will work
|
||||
|
||||
# curl -H "Host: transmission.robi.private" https://robi.private/ < will work
|
||||
# curl -H "Host: transmission.robi.private" https://144.76.13.147/ < wont work
|
||||
services.nginx = {
|
||||
|
|
Loading…
Reference in a new issue