nix-files/hosts/common/programs/htop/default.nix

12 lines
201 B
Nix

{ ... }:
{
sane.programs.htop = {
sandbox.method = "landlock";
sandbox.extraPaths = [
"/proc"
"/sys/devices"
];
fs.".config/htop/htoprc".symlink.target = ./htoprc;
};
}