mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-06 14:49:14 +00:00
nixos: init vanadium by cloning carbon
This commit is contained in:
parent
96340f2e08
commit
dcadddad3a
21 changed files with 1335 additions and 0 deletions
24
nix/nixosModules/named/vanadium/audio.nix
Normal file
24
nix/nixosModules/named/vanadium/audio.nix
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
{
|
||||
|
||||
services.pipewire = {
|
||||
|
||||
enable = true;
|
||||
alsa.enable = true;
|
||||
alsa.support32Bit = true;
|
||||
pulse.enable = true;
|
||||
jack.enable = true;
|
||||
|
||||
extraConfig.pipewire = {
|
||||
"10-buffer_size" = {
|
||||
"context.properties" = {
|
||||
"default.clock.quantum" = 2048;
|
||||
"default.clock.min-quantum" = 1024;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
users.users."leana".extraGroups = [ "audio" ];
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue