Modified various dotfiles

This commit is contained in:
baduhai 2023-01-27 11:37:43 -03:00
parent 50a9b1e93c
commit 3c91766c27
4 changed files with 20 additions and 13 deletions

View file

@ -52,7 +52,6 @@
ventoy-bin ventoy-bin
virt-manager virt-manager
wezterm wezterm
yakuake
# Package overrides # Package overrides
(appimage-run.override { (appimage-run.override {
extraPkgs = pkgs: [ ]; extraPkgs = pkgs: [ ];

View file

@ -8,8 +8,9 @@
sessionVariables = { sessionVariables = {
EDITOR = "micro"; EDITOR = "micro";
}; };
activation.installMicroPlugins = '' file = {
${pkgs.micro}/bin/micro -plugin install filemanager ".config/btop/themes/catppuccin_mocha.theme".source = "${inputs.dotfiles}/.config/btop/themes/catppuccin_mocha.theme";
''; ""
};
}; };
} }

View file

@ -19,7 +19,7 @@
scrollbar = true; scrollbar = true;
tabstospaces = true; tabstospaces = true;
tabsize = 2; tabsize = 2;
colorscheme = "cmc-16"; colorscheme = "simple";
}; };
}; };
oh-my-posh = { oh-my-posh = {
@ -51,7 +51,7 @@
owner = "oh-my-fish"; owner = "oh-my-fish";
repo = "plugin-bang-bang"; repo = "plugin-bang-bang";
rev = "f969c618301163273d0a03d002614d9a81952c1e"; rev = "f969c618301163273d0a03d002614d9a81952c1e";
sha256 = "A8ydBX4LORk+nutjHurqNNWFmW6LIiBPQcxS3x4nbeQ="; sha256 = "sha256-A8ydBX4LORk+nutjHurqNNWFmW6LIiBPQcxS3x4nbeQ=";
}; };
} }
{ {
@ -60,7 +60,15 @@
owner = "PatrickF1"; owner = "PatrickF1";
repo = "fzf.fish"; repo = "fzf.fish";
rev = "v9.2"; rev = "v9.2";
sha256 = "XmRGe39O3xXmTvfawwT2mCwLIyXOlQm7f40mH5tzz+s="; sha256 = "sha256-XmRGe39O3xXmTvfawwT2mCwLIyXOlQm7f40mH5tzz+s=";
};
}
{
name = "catppuccin";
src = {
owner = "catppuccin";
repo = "fish";
sha256 = "";
}; };
} }
]; ];

View file

@ -13,13 +13,12 @@
syncthingtray syncthingtray
]; ];
file = { file = {
# Dotfiles that can't be managed via home-manager ".config/wezterm/wezterm.lua".source = "${inputs.dotfiles}/.config/wezterm/wezterm.lua";
".local/share/color-schemes/CatppuccinMocha.colors".source = "${inputs.dotfiles}/CatppuccinMocha.colors"; ".config/MangoHud/MangoHud.conf".source = "${inputs.dotfiles}/.config/MangoHud/MangoHud.conf";
".local/share/color-schemes/CatppuccinLatte.colors".source = "${inputs.dotfiles}/CatppuccinLatte.colors"; ".config/solvespace/settings.json".source = "${inputs.dotfiles}/.config/solvespace/settings.json";
".config/wezterm/wezterm.lua".source = "${inputs.dotfiles}/wezterm.lua"; ".local/share/color-schemes/CatppuccinLatte.colors".source = "${inputs.dotfiles}/.local/share/color-schemes/CatppuccinLatte.colors";
".config/MangoHud/MangoHud.conf".source = "${inputs.dotfiles}/MangoHud/MangoHud.conf"; ".local/share/color-schemes/CatppuccinMocha.colors".source = "${inputs.dotfiles}/.local/share/color-schemes/CatppuccinMocha.colors";
# Autostart programs # Autostart programs
".config/autostart/org.kde.yakuake.desktop".source = config.lib.file.mkOutOfStoreSymlink "/var/run/current-system/sw/share/applications/org.kde.yakuake.desktop";
".config/autostart/koi.desktop".source = config.lib.file.mkOutOfStoreSymlink "/var/run/current-system/sw/share/applications/koi.desktop"; ".config/autostart/koi.desktop".source = config.lib.file.mkOutOfStoreSymlink "/var/run/current-system/sw/share/applications/koi.desktop";
}; };
}; };