feat(authelia): configure port and reverse proxy feat(lldap): force password reset and update settings fix(nixos): remove root from trusted users on ryu and tako fix(immich): disable auto launch and enable password login refactor(tako): enable authelia, immich, and lldap services chore(secrets): update lldap seed and metadata timestamps
22 lines
421 B
Nix
22 lines
421 B
Nix
{
|
|
pkgs,
|
|
device,
|
|
stablePkgs,
|
|
lib,
|
|
...
|
|
}: {
|
|
stylix.targets.nixvim.enable = false;
|
|
programs = lib.optionalAttrs (device.is "ryu" || device.is "kuro" || device.is "mirai" || device.is "tako") {
|
|
nixvim =
|
|
{
|
|
enable = true;
|
|
nixpkgs = {
|
|
config = {
|
|
allowUnfree = true;
|
|
};
|
|
};
|
|
}
|
|
// (import ./../../neovim {inherit pkgs stablePkgs;});
|
|
};
|
|
}
|