mirror of
https://github.com/gburd/nix-config.git
synced 2024-11-14 16:36:24 +00:00
14 lines
315 B
Nix
14 lines
315 B
Nix
{ 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/"
|
|
];
|
|
}
|