programs: add ps

This commit is contained in:
Colin 2024-06-13 01:04:24 +00:00
parent 3ff9f974a6
commit ce60e53b9a
3 changed files with 10 additions and 0 deletions

View File

@ -84,6 +84,7 @@ in
"parted"
"pciutils"
"powertop"
"ps"
"pstree"
"ripgrep"
"s6-rc" # service manager

View File

@ -101,6 +101,7 @@
./planify.nix
./portfolio-filemanager.nix
./playerctl.nix
./ps.nix
./rhythmbox.nix
./ripgrep.nix
./rofi

View File

@ -0,0 +1,8 @@
{ pkgs, ... }:
{
sane.programs.ps = {
packageUnwrapped = pkgs.linkIntoOwnPackage pkgs.procps "bin/ps";
sandbox.method = "bwrap";
sandbox.isolatePids = false;
};
}