mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-06-07 13:29:22 +02:00
some small updates
This commit is contained in:
parent
283d6475fc
commit
1c442bfcaf
7 changed files with 197 additions and 6 deletions
|
@ -37,8 +37,8 @@ in {
|
|||
label = "noise_suppressor_mono";
|
||||
control = {
|
||||
"VAD Threshold (%)" = 50.0;
|
||||
"VAD Grace Period (ms)" = 200;
|
||||
"Retroactive VAD Grace (ms)" = 0;
|
||||
#"VAD Grace Period (ms)" = 0;
|
||||
"Retroactive VAD Grace (ms)" = 50;
|
||||
};
|
||||
}];
|
||||
};
|
||||
|
|
|
@ -14,7 +14,7 @@ in {
|
|||
config = lib.mkIf cfg.enable {
|
||||
services = {
|
||||
xserver = {
|
||||
layout = cfg.layout;
|
||||
xkb.layout = cfg.layout;
|
||||
};
|
||||
};
|
||||
console = {
|
||||
|
|
|
@ -23,7 +23,14 @@ in {
|
|||
max-jobs = "auto";
|
||||
auto-optimise-store = true;
|
||||
allowed-users = [ "*" ];
|
||||
experimental-features = [ "nix-command" "flakes" ];
|
||||
experimental-features = [
|
||||
"nix-command"
|
||||
"flakes"
|
||||
"auto-allocate-uids"
|
||||
"configurable-impure-env"
|
||||
"impure-derivations"
|
||||
"git-hashing"
|
||||
];
|
||||
warn-dirty = true;
|
||||
use-xdg-base-directories = true;
|
||||
keep-going = true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue