Add codex and configure noisetorch

This commit is contained in:
2026-03-03 10:07:15 +00:00
parent d9b49b7aea
commit fcbd126288
3 changed files with 34 additions and 7 deletions

View File

@@ -25,7 +25,7 @@
# Dev tools / AI
vscode
antigravity
codex
opencode-desktop
nodejs
python3
@@ -205,6 +205,7 @@
raid = "sudo mdadm --detail /dev/md0";
unp = "unp -U";
cat = "bat";
lmcodex = "codex --oss -m qwen3-coder-30b-a3b-instruct";
};
historySize = 10000;
historyFileSize = 100000;
@@ -445,6 +446,29 @@
};
};
systemd.user.services.noisetorch = {
Unit = {
Description = "NoiseTorch Noise Cancelling";
After = [
"graphical-session.target"
"pipewire.service"
"wireplumber.service"
];
Wants = [ "graphical-session.target" ];
PartOf = [ "graphical-session.target" ];
};
Install = {
WantedBy = [ "graphical-session.target" ];
};
Service = {
Type = "oneshot";
ExecStart = "${pkgs.noisetorch}/bin/noisetorch -i";
ExecStop = "${pkgs.noisetorch}/bin/noisetorch -u";
RemainAfterExit = true;
TimeoutStartSec = "30s";
};
};
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;