programs: add ps
This commit is contained in:
@@ -84,6 +84,7 @@ in
|
|||||||
"parted"
|
"parted"
|
||||||
"pciutils"
|
"pciutils"
|
||||||
"powertop"
|
"powertop"
|
||||||
|
"ps"
|
||||||
"pstree"
|
"pstree"
|
||||||
"ripgrep"
|
"ripgrep"
|
||||||
"s6-rc" # service manager
|
"s6-rc" # service manager
|
||||||
|
@@ -101,6 +101,7 @@
|
|||||||
./planify.nix
|
./planify.nix
|
||||||
./portfolio-filemanager.nix
|
./portfolio-filemanager.nix
|
||||||
./playerctl.nix
|
./playerctl.nix
|
||||||
|
./ps.nix
|
||||||
./rhythmbox.nix
|
./rhythmbox.nix
|
||||||
./ripgrep.nix
|
./ripgrep.nix
|
||||||
./rofi
|
./rofi
|
||||||
|
8
hosts/common/programs/ps.nix
Normal file
8
hosts/common/programs/ps.nix
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
sane.programs.ps = {
|
||||||
|
packageUnwrapped = pkgs.linkIntoOwnPackage pkgs.procps "bin/ps";
|
||||||
|
sandbox.method = "bwrap";
|
||||||
|
sandbox.isolatePids = false;
|
||||||
|
};
|
||||||
|
}
|
Reference in New Issue
Block a user