32 lines
484 B
Nix
32 lines
484 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}:
|
|
{
|
|
|
|
my = {
|
|
utils = {
|
|
commons.enable = true;
|
|
lxc-standard.enable = true;
|
|
};
|
|
|
|
services.immich = {
|
|
enable = true;
|
|
mediaDir = "/mnt/immich";
|
|
};
|
|
|
|
networking.nas-samba-share = {
|
|
enable = true;
|
|
allowUsers = [ config.services.immich.user ];
|
|
};
|
|
|
|
virtualisation.proxmox.enable = true;
|
|
};
|
|
|
|
# Extra packages
|
|
environment.systemPackages = with pkgs; [ ];
|
|
|
|
system.stateVersion = "24.11";
|
|
}
|