update: nixos-26.05
This commit is contained in:
parent
7b6e082414
commit
834fbccfc8
11 changed files with 72 additions and 64 deletions
|
|
@ -125,8 +125,8 @@
|
|||
kustomize
|
||||
kubectl-rsh
|
||||
|
||||
nodePackages.intelephense
|
||||
nodePackages.typescript-language-server
|
||||
intelephense
|
||||
typescript-language-server
|
||||
flow # js lsp server
|
||||
nil # nix lsp server
|
||||
clang-tools # c/c++ lsp server
|
||||
|
|
|
|||
|
|
@ -134,12 +134,14 @@ in
|
|||
kak-tree-sitter
|
||||
kak-pager
|
||||
kak-man-pager
|
||||
nodePackages.bash-language-server
|
||||
bash-language-server
|
||||
shellcheck
|
||||
shfmt
|
||||
|
||||
nixd
|
||||
|
||||
emmet-cli
|
||||
nodePackages.prettier
|
||||
prettier
|
||||
pint-fmt
|
||||
|
||||
aspell
|
||||
|
|
|
|||
|
|
@ -13,6 +13,9 @@ in
|
|||
config = lib.mkIf cfg.enable {
|
||||
programs.password-store = {
|
||||
enable = true;
|
||||
settings = {
|
||||
PASSWORD_STORE_DIR = "${config.xdg.dataHome}/password-store";
|
||||
};
|
||||
package = pkgs.pass.withExtensions (
|
||||
ex: with ex; [
|
||||
pass-otp
|
||||
|
|
|
|||
|
|
@ -8,10 +8,11 @@
|
|||
# RNNoise is a noise supperssion neural network
|
||||
# Here we use it as a plugin for pipewire to create a virtual microphone
|
||||
config = {
|
||||
home.file = {
|
||||
".config/pipewire/pipewire.conf.d/99-input-denoising.conf".text = ''
|
||||
xdg.configFile = {
|
||||
"pipewire/pipewire.conf.d/99-input-denoising.conf".text = ''
|
||||
context.modules = [
|
||||
{ name = libpipewire-module-filter-chain
|
||||
flags = [ nofail ]
|
||||
args = {
|
||||
node.description = "Noise Canceling source"
|
||||
media.name = "Noise Canceling source"
|
||||
|
|
@ -20,7 +21,7 @@
|
|||
{
|
||||
type = ladspa
|
||||
name = rnnoise
|
||||
plugin = ${pkgs.rnnoise-plugin}/lib/ladspa/librnnoise_ladspa.so
|
||||
plugin = "librnnoise_ladspa"
|
||||
label = noise_suppressor_mono
|
||||
control = {
|
||||
"VAD Threshold (%)" 0.0
|
||||
|
|
@ -44,9 +45,7 @@
|
|||
}
|
||||
]
|
||||
'';
|
||||
};
|
||||
|
||||
xdg.configFile = {
|
||||
"pipewire/pipewire.conf.d/99-rtp-sink.conf".text = ''
|
||||
context.modules = [
|
||||
{ name = libpipewire-module-rtp-sink
|
||||
|
|
@ -78,9 +77,10 @@
|
|||
}
|
||||
]
|
||||
'';
|
||||
|
||||
"systemd/user/pipewire.service.d/override.conf".text = ''
|
||||
[Service]
|
||||
ExecStartPre=/usr/bin/env sleep 10s
|
||||
ExecStartPre=${pkgs.coreutils}/bin/sleep 10s
|
||||
'';
|
||||
};
|
||||
};
|
||||
|
|
|
|||
|
|
@ -2,8 +2,8 @@
|
|||
{
|
||||
home.packages = with pkgs; [
|
||||
_thunar-terminal
|
||||
(xfce.thunar.override {
|
||||
thunarPlugins = with pkgs.xfce; [
|
||||
(thunar.override {
|
||||
thunarPlugins = [
|
||||
thunar-volman
|
||||
thunar-archive-plugin
|
||||
];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue