programs: enable free

This commit is contained in:
Colin 2024-06-13 01:09:48 +00:00
parent ce60e53b9a
commit 04f4d330a8
3 changed files with 11 additions and 0 deletions

View File

@ -50,6 +50,7 @@ in
"fd"
"file"
"forkstat" # monitor every spawned/forked process
"free"
# "fwupd"
"gawk"
"gdb" # to debug segfaults

View File

@ -45,6 +45,7 @@
./flare-signal.nix
./fontconfig.nix
./fractal.nix
./free.nix
./frozen-bubble.nix
./fwupd.nix
./g4music.nix

View File

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