nix-files/hosts/common/programs/errno.nix

9 lines
159 B
Nix
Raw Normal View History

2024-05-19 00:21:30 +00:00
{ pkgs, ... }:
{
sane.programs.errno = {
packageUnwrapped = pkgs.linkIntoOwnPackage pkgs.moreutils "bin/errno";
sandbox.method = "landlock";
};
}