add grocy
This commit is contained in:
parent
0de75e777b
commit
ba624dec09
6 changed files with 54 additions and 0 deletions
|
@ -14,11 +14,13 @@
|
|||
./dms.nix
|
||||
./borg.nix
|
||||
./mpd.nix
|
||||
./grocy.nix
|
||||
|
||||
];
|
||||
|
||||
sops.defaultSopsFile = ../../secrets/pepe.yaml;
|
||||
|
||||
|
||||
networking.hostName = "pepe";
|
||||
|
||||
# fonts
|
||||
|
|
16
nixos/configs/pepe/grocy.nix
Normal file
16
nixos/configs/pepe/grocy.nix
Normal file
|
@ -0,0 +1,16 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
services.grocy = {
|
||||
enable = true;
|
||||
settings = {
|
||||
culture = "de";
|
||||
currency = "EUR";
|
||||
};
|
||||
hostName = "grocy.pepe.private";
|
||||
nginx.enableSSL = false;
|
||||
};
|
||||
|
||||
backup.dirs = [ config.services.grocy.dataDir ];
|
||||
|
||||
}
|
|
@ -15,4 +15,7 @@ with lib;
|
|||
};
|
||||
};
|
||||
|
||||
sops.secrets.tinc_retiolum_ed25519_key = { };
|
||||
sops.secrets.tinc_retiolum_rsa_key = { };
|
||||
|
||||
}
|
||||
|
|
|
@ -10,6 +10,7 @@
|
|||
./codimd.nix
|
||||
./bitwarden.nix
|
||||
#./syncplay.nix
|
||||
./grocy.nix
|
||||
|
||||
];
|
||||
|
||||
|
|
16
nixos/configs/sputnik/grocy.nix
Normal file
16
nixos/configs/sputnik/grocy.nix
Normal file
|
@ -0,0 +1,16 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
services.grocy = {
|
||||
enable = true;
|
||||
settings = {
|
||||
culture = "de";
|
||||
currency = "EUR";
|
||||
};
|
||||
hostName = "grocy.ingolf-wagner.de";
|
||||
nginx.enableSSL = true;
|
||||
};
|
||||
|
||||
backup.dirs = [ config.services.grocy.dataDir ];
|
||||
|
||||
}
|
|
@ -63,6 +63,7 @@ in {
|
|||
};
|
||||
};
|
||||
|
||||
|
||||
"git.ingolf-wagner.de" = {
|
||||
listen = [
|
||||
{
|
||||
|
@ -116,6 +117,21 @@ in {
|
|||
} // error.locations;
|
||||
};
|
||||
|
||||
"grocy.ingolf-wagner.de" = {
|
||||
listen = [
|
||||
{
|
||||
addr = "0.0.0.0";
|
||||
port = 4443;
|
||||
ssl = true;
|
||||
}
|
||||
{
|
||||
addr = "0.0.0.0";
|
||||
port = 80;
|
||||
ssl = false;
|
||||
}
|
||||
];
|
||||
};
|
||||
|
||||
"paste.ingolf-wagner.de" = {
|
||||
listen = [
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue