mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-04 14:21:02 +03:00
commit
c6bad4895a
@ -331,6 +331,7 @@
|
|||||||
./security/systemd-confinement.nix
|
./security/systemd-confinement.nix
|
||||||
./security/tpm2.nix
|
./security/tpm2.nix
|
||||||
./security/wrappers/default.nix
|
./security/wrappers/default.nix
|
||||||
|
./services/admin/docuum.nix
|
||||||
./services/admin/meshcentral.nix
|
./services/admin/meshcentral.nix
|
||||||
./services/admin/oxidized.nix
|
./services/admin/oxidized.nix
|
||||||
./services/admin/pgadmin.nix
|
./services/admin/pgadmin.nix
|
||||||
|
45
nixos/modules/services/admin/docuum.nix
Normal file
45
nixos/modules/services/admin/docuum.nix
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
{ config, pkgs, lib, utils, ... }:
|
||||||
|
|
||||||
|
let
|
||||||
|
cfg = config.services.docuum;
|
||||||
|
inherit (lib) mkIf mkEnableOption mkOption getExe types;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
options.services.docuum = {
|
||||||
|
enable = mkEnableOption "docuum daemon";
|
||||||
|
|
||||||
|
threshold = mkOption {
|
||||||
|
description = "Threshold for deletion in bytes, like `10 GB`, `10 GiB`, `10GB` or percentage-based thresholds like `50%`";
|
||||||
|
type = types.str;
|
||||||
|
default = "10 GB";
|
||||||
|
example = "50%";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
assertions = [
|
||||||
|
{
|
||||||
|
assertion = config.virtualisation.docker.enable;
|
||||||
|
message = "docuum requires docker on the host";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
|
systemd.services.docuum = {
|
||||||
|
after = [ "docker.socket" ];
|
||||||
|
requires = [ "docker.socket" ];
|
||||||
|
wantedBy = [ "multi-user.target" ];
|
||||||
|
path = [ config.virtualisation.docker.package ];
|
||||||
|
environment.HOME = "/var/lib/docuum";
|
||||||
|
|
||||||
|
serviceConfig = {
|
||||||
|
DynamicUser = true;
|
||||||
|
StateDirectory = "docuum";
|
||||||
|
SupplementaryGroups = [ "docker" ];
|
||||||
|
ExecStart = utils.escapeSystemdExecArgs [
|
||||||
|
(getExe pkgs.docuum)
|
||||||
|
"--threshold" cfg.threshold
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
38
pkgs/by-name/do/docuum/package.nix
Normal file
38
pkgs/by-name/do/docuum/package.nix
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
{ lib
|
||||||
|
, rustPlatform
|
||||||
|
, fetchFromGitHub
|
||||||
|
, stdenv
|
||||||
|
, darwin
|
||||||
|
}:
|
||||||
|
|
||||||
|
rustPlatform.buildRustPackage rec {
|
||||||
|
pname = "docuum";
|
||||||
|
version = "0.23.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "stepchowfun";
|
||||||
|
repo = "docuum";
|
||||||
|
rev = "v${version}";
|
||||||
|
hash = "sha256-jZJkI4rk/8O6MsHjuDqmIiRc1LJpTajk/rSUVYnHiOs=";
|
||||||
|
};
|
||||||
|
|
||||||
|
cargoHash = "sha256-qBigfW0W3t0a43y99H22gmKBnhsu08Yd1CTTatsRfRs=";
|
||||||
|
|
||||||
|
checkFlags = [
|
||||||
|
# fails, no idea why
|
||||||
|
"--skip=format::tests::code_str_display"
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = lib.optionals stdenv.isDarwin [
|
||||||
|
darwin.apple_sdk.frameworks.IOKit
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Least recently used (LRU) eviction of Docker images";
|
||||||
|
homepage = "https://github.com/stepchowfun/docuum";
|
||||||
|
changelog = "https://github.com/stepchowfun/docuum/blob/${src.rev}/CHANGELOG.md";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ mkg20001 ];
|
||||||
|
mainProgram = "docuum";
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user