Changes - Update pkgs to latest unstable (2026.01.19) and spkgs to 25.05 - Fix qt5 "end of life" and use `sddm qt5` - Fix mpv config symlink - Fix starship config - Refactor `packages.nix` - Rename `hardware.pulseaudio` to `services.pulseaudio` - Use `qview` as a default image viewer - Disable `qt` theme settings in `./shit/`. Stylix now works with Qt - Enable `flatpak`, `grub OS prober` - Install `kubernetes`, `godot`, `ldtk`, `adb`, `throne`, `amnezia` - Update `neovim` to 0.11 - Delete `vscode.nix`, `imv.nix`, `git.nix`, `lynx.nix` - Delete `mtr`, `ollama`, `pg-admin4`, `postgres-lsp`, `lynx`, `imv`, `feh`, `osu`, `gimp` - Delete `rustup` and `driwio` cuz no binary cache - Commented many packages
18 lines
563 B
Nix
18 lines
563 B
Nix
{ config, lib, ... }: {
|
|
programs.zellij = { # Аналог tmux
|
|
enable = true;
|
|
# Перезапись некоторых цветов stylix темы
|
|
themes.stylix = {
|
|
themes = with config.lib.stylix.colors.withHashtag; {
|
|
default = {
|
|
ribbon_selected.background = lib.mkForce base0B;
|
|
table_title.base = lib.mkForce base0B;
|
|
frame_selected.base = lib.mkForce base0B;
|
|
};
|
|
};
|
|
};
|
|
# enableBashIntegration = true;
|
|
# enableZshIntegration = true;
|
|
# enableFishIntegration = true;
|
|
};
|
|
}
|