- remove emacs - remove inputs - trying to speed up evaluation - update inputs
23 lines
515 B
Nix
23 lines
515 B
Nix
{config, ...}: let
|
|
nixpkgsImmich = builtins.getFlake "github:NixOS/nixpkgs/c0ee4c1770aa1ef998c977c4cc653a07ec95d9bf";
|
|
in {
|
|
containers.nextcloud = {
|
|
nixpkgs = nixpkgsImmich;
|
|
autoStart = true;
|
|
privateNetwork = true;
|
|
# hostAddress = "192.168.100.10";
|
|
# localAddress = "192.168.100.11";
|
|
# hostAddress6 = "fc00::1";
|
|
# localAddress6 = "fc00::2";
|
|
config = {
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: {
|
|
services.immich = {
|
|
enable = true;
|
|
};
|
|
};
|
|
};
|
|
}
|