nix-config/home-manager/_mixins/desktop/gnome-sound-recorder.nix

15 lines
315 B
Nix
Raw Normal View History

{ lib, username, ... }:
with lib.hm.gvariant;
{
dconf.settings = {
"org/gnome/SoundRecorder" = {
audio-channel = "mono";
audio-profile = "flac";
};
};
systemd.user.tmpfiles.rules = [
"L+ /home/${username}/.local/share/org.gnome.SoundRecorder/ - - - - /home/${username}/Audio/"
];
}