Merge remote-tracking branch 'refs/remotes/origin/main'

This commit is contained in:
Danilo Reyes 2024-04-01 08:57:34 -06:00
commit 418562e799

View File

@ -252,7 +252,6 @@ environment.gnome.excludePackages = (with pkgs; [
# Sets up QT to use adwaita themes. # Sets up QT to use adwaita themes.
qt = { qt = {
enable = true; enable = true;
platformTheme = "gnome";
style = "adwaita"; style = "adwaita";
}; };
#+end_src #+end_src
@ -533,7 +532,6 @@ managers, etc.
#+begin_src nix #+begin_src nix
protonmail-bridge # bridge for protonmail protonmail-bridge # bridge for protonmail
firefox # web browser that allows to disable spyware
tor-browser-bundle-bin # dark web, so dark! tor-browser-bundle-bin # dark web, so dark!
chromium # web browser with spyware included chromium # web browser with spyware included
telegram-desktop # furry chat telegram-desktop # furry chat
@ -976,11 +974,15 @@ environment = {
#+end_src #+end_src
* PROGRAMS * PROGRAMS
Some programs get enabled and installed through here, as well as the activation Some system programs get enabled and installed through here, as well as the
of some services. activation of some services.
#+begin_src nix #+begin_src nix
programs = { programs = {
firefox = {
enable = true;
languagePacks = [ "en-CA" "es-MX" "it" ];
};
starship.enable = true; starship.enable = true;
tmux.enable = true; tmux.enable = true;
fzf.fuzzyCompletion = true; fzf.fuzzyCompletion = true;