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

12 lines
201 B
Nix
Raw Normal View History

2024-04-05 21:52:33 +00:00
{ ... }:
{
sane.programs.htop = {
sandbox.method = "landlock";
sandbox.extraPaths = [
"/proc"
"/sys/devices"
];
fs.".config/htop/htoprc".symlink.target = ./htoprc;
};
}