Changes - Update pkgs to latest unstable (2025.12.26) and spkgs to 25.05 - Fix qt5 "end of life" and use `sddm qt5` - Fix mpv config symlink - Fix starship config - 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` - Install `kubernetes`, `godot`, `ldtk`, `adb`, `throne` - 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
14 lines
378 B
Nix
14 lines
378 B
Nix
{ lib, ... }: {
|
|
programs.starship = {
|
|
enable = true;
|
|
|
|
enableBashIntegration = true;
|
|
enableZshIntegration = true;
|
|
enableFishIntegration = true;
|
|
enableNushellIntegration = true;
|
|
|
|
enableTransience = true; # Fish Shell only. Отображает пустую строку при нажатии enter?
|
|
|
|
settings = lib.importTOML ./starship.toml;
|
|
};
|
|
}
|