- Added theming to Btop - Added theming to Nvim and removed bufferline plugin - Added mode to theme.nix to change from light theme to dark theme - Replaced Starship theme with Catppuccin starship theme - Added QT platformtheme ENV - Moved wallpapers into wallpaper dir - Replaced image of desktop1 with more up to date one
49 lines
964 B
Nix
49 lines
964 B
Nix
{ pkgs, ... }:
|
|
let
|
|
theme = import ../theme.nix;
|
|
in
|
|
{
|
|
catppuccin = {
|
|
fish = {
|
|
enable = true;
|
|
flavor = theme.flavor;
|
|
};
|
|
starship = {
|
|
enable = true;
|
|
flavor = theme.flavor;
|
|
};
|
|
};
|
|
|
|
programs = {
|
|
fish = {
|
|
enable = true;
|
|
plugins = [
|
|
{
|
|
# !! to get the previous command
|
|
name = "fishbang";
|
|
src = pkgs.fetchFromGitHub {
|
|
owner = "BrewingWeasel";
|
|
repo = "fishbang";
|
|
rev = "50389667eb9ac79edcff9b987c83e1de8ac93921";
|
|
hash = "sha256-IneNWyfo29C7FDA5b6pTZRX3HpP6y/dRM6GXuLq2+zc=";
|
|
};
|
|
}
|
|
];
|
|
};
|
|
|
|
starship = {
|
|
enable = true;
|
|
settings = {
|
|
directory.substitutions = {
|
|
"Documents" = " ";
|
|
"Downloads" = " ";
|
|
"Music" = " ";
|
|
"Pictures" = " ";
|
|
"Git" = " ";
|
|
"nextcloud" = " ";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|