gnome-sound-recorder: ship

This commit is contained in:
2025-03-07 16:55:33 +00:00
parent 4f633e8492
commit 574a00b431
3 changed files with 14 additions and 0 deletions

View File

@@ -314,6 +314,7 @@ in
"gnome-frog" # OCR/QR decoder
"gnome-maps"
"gnome-screenshot" # libcamera-based screenshotter, for debugging; should be compatible with gc2145 camera on Pinephone
"gnome-sound-recorder" # a simple microphone recorder/tester
"gnome-weather"
"gpodder"
"gsettings"

View File

@@ -83,6 +83,7 @@
./gnome-frog.nix
./gnome-keyring
./gnome-maps.nix
./gnome-sound-recorder.nix
./gnome-weather.nix
./go2tv.nix
./gocryptfs.nix

View File

@@ -0,0 +1,12 @@
{ ... }:
{
sane.programs.gnome-sound-recorder = {
sandbox.whitelistAudio = true;
sandbox.whitelistWayland = true;
sandbox.extraHomePaths = [
".local/share/org.gnome.SoundRecorder" #< this is where it saves recordings
# additionally, gnome-sound-recorder has the option to "export" audio out of this directory:
# opens a file chooser for where to save the file (maybe via the portal??)
];
};
}