Compare commits

...

2 commits

Author SHA1 Message Date
9e212934dd feat(nix): remove wezterm from system packages
- Disabled `wezterm` in the list of default system packages.
- Streamlines the configuration by focusing on existing terminal tools.
2026-03-30 08:45:08 +02:00
ffc5947bec feat(nix): update apps, tools, and system packages
- Added `blackhole-2ch` to casks and `darktable` to system packages.
- Disabled `wezterm` and kept `direnv` and `alacritty` enabled in tools.
- Improves utility and functionality by refining the configuration.
2026-03-30 08:45:08 +02:00
2 changed files with 7 additions and 7 deletions

View file

@ -1,8 +1,7 @@
{ { config
config, , lib
lib, , pkgs
pkgs, , ...
...
}: }:
with lib; with lib;
with lib.metacfg; with lib.metacfg;
@ -39,7 +38,6 @@ in
wget wget
ssh-tresor ssh-tresor
starship starship
wezterm
]; ];
shells = [ shells = [
pkgs.fish pkgs.fish

View file

@ -14,6 +14,7 @@ with lib.metacfg;
"libusb" "libusb"
"mas" "mas"
]; ];
casks = [ "blackhole-2ch" ];
masApps = { }; masApps = { };
onActivation = { onActivation = {
cleanup = "zap"; cleanup = "zap";
@ -30,7 +31,7 @@ with lib.metacfg;
tools = { tools = {
direnv.enable = true; direnv.enable = true;
alacritty.enable = true; alacritty.enable = true;
wezterm.enable = true; wezterm.enable = false;
}; };
build.enable = true; build.enable = true;
}; };
@ -45,6 +46,7 @@ with lib.metacfg;
nodejs nodejs
qemu qemu
virt-manager virt-manager
darktable
]; ];
users.users.harald.shell = pkgs.fish; users.users.harald.shell = pkgs.fish;