13 lines
299 B
Nix
13 lines
299 B
Nix
{ ... }:
|
|
{
|
|
sane.programs.htop = {
|
|
sandbox.keepPidsAndProc = true;
|
|
sandbox.extraPaths = [
|
|
"/sys/devices"
|
|
"/sys/block" # for zram usage
|
|
];
|
|
sandbox.whitelistDbus.system = true; #< to show systemd job status
|
|
fs.".config/htop/htoprc".symlink.target = ./htoprc;
|
|
};
|
|
}
|