Update de rotina

This commit is contained in:
DarkGui
2025-11-02 18:11:35 -03:00
parent 939cff1632
commit bb89c755e8
18 changed files with 117 additions and 151 deletions
+3 -1
View File
@@ -4,6 +4,8 @@
./Fontes/fontes.nix
./git/git.nix
./kitty/kitty.nix
./pkgs/pkgs.nix
./pkgs/imp_pkgs.nix
./shell/fish.nix
./shell/starship.nix
];
}
+6
View File
@@ -0,0 +1,6 @@
{ config, lib, inputs, pkgs, ... }: {
imports = [
./pkgs.nix
];
}
+5 -3
View File
@@ -18,9 +18,12 @@
mangohud
protonplus
hydralauncher
lsfg-vk
lsfg-vk-ui
## Utilitários do sistema e dev tools
fastfetch
qbittorrent
cpu-x
git
btop-cuda
@@ -28,15 +31,14 @@
flatpak
appimage-run
wget
lact
kitty
vlc
tree
python3
unrar
droidcam
gpart
winetricks
wineWowPackages.staging
];
}
+14
View File
@@ -0,0 +1,14 @@
{ config, lib, inputs, pkgs, ... }: {
## config fish
home.packages = with pkgs; [
fishPlugins.done
fishPlugins.fzf-fish
fishPlugins.forgit
fishPlugins.hydro
fzf
fishPlugins.grc
grc
];
}
+9
View File
@@ -0,0 +1,9 @@
{ config, lib, inputs, pkgs, ... }: {
programs.starship = {
enable = true;
settings = lib.importTOML "${config.programs.starship.package}/share/starship/presets/nerd-font-symbols.toml";
enableFishIntegration = true;
};
}