update: nixos-26.05

This commit is contained in:
Leonardo Eugênio 2026-06-13 23:23:42 -03:00
parent 7b6e082414
commit 834fbccfc8
11 changed files with 72 additions and 64 deletions

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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
'';
};
};

View file

@ -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
];