Compare commits

...

3 Commits

Author SHA1 Message Date
6e2c2a6c46
feat(host/orion): enable bash completion in zsh
Some checks failed
Check Formatting of Files / Check-Formatting (push) Has been cancelled
2024-07-19 00:48:22 -05:00
e404bc932c
refactor(hm/price): remove pulseaudio program 2024-07-19 00:48:22 -05:00
02ec4d49f0
refactor(nixos/orion): specify pipewire clock settings 2024-07-19 00:48:20 -05:00
3 changed files with 26 additions and 2 deletions

View File

@ -5,5 +5,26 @@
enable = true; enable = true;
alsa.enable = true; alsa.enable = true;
pulse.enable = true; pulse.enable = true;
extraConfig.pipewire."90-default-clock" = {
"context.properties" = {
"default.clock" = {
"allowed-rates" = [
44100
48000
88200
96000
176400
192000
352800
384000
705600
768000
];
"quantum" = 32;
"min-quantum" = 32;
"max-quantum" = 1024;
};
};
};
}; };
} }

View File

@ -2,7 +2,11 @@
{ {
programs = { programs = {
dconf.enable = true; dconf.enable = true;
zsh.enable = true; zsh = {
enable = true;
enableCompletion = true;
enableBashCompletion = true;
};
nix-ld.enable = true; nix-ld.enable = true;
}; };
} }

View File

@ -45,7 +45,6 @@ in
kooha kooha
libreoffice-fresh libreoffice-fresh
zathura zathura
pulseaudio
nix-prefetch-scripts nix-prefetch-scripts
mako mako
wl-clipboard wl-clipboard