Add with; pkgs, added lm_sensors for sensor monitoring.

This commit is contained in:
CronyAkatsuki 2024-02-14 19:22:26 +01:00
parent c17ee12f9a
commit 6b4390672b

View File

@ -16,33 +16,34 @@
# My packages # My packages
home.packages = [ home.packages = with pkgs; [
pkgs.librewolf # Nice privacy browser librewolf # Nice privacy browser
pkgs.thunderbird # Nice mail client thunderbird # Nice mail client
pkgs.qutebrowser # Nice browser in general qutebrowser # Nice browser in general
pkgs.discord # Fuck the fact I have to use it discord # Fuck the fact I have to use it
pkgs.keepassxc # Best password manager keepassxc # Best password manager
pkgs.buku # Nice bookmark manager buku # Nice bookmark manager
pkgs.bukubrow # Nice bookmark manager browser support bukubrow # Nice bookmark manager browser support
pkgs.rclone # Best sync client in the world rclone # Best sync client in the world
pkgs.age # Simple file encryption age # Simple file encryption
pkgs.alacritty # Best terminal alacritty # Best terminal
pkgs.nitch # Simple system info nitch # Simple system info
pkgs.libarchive # bsdtar libarchive # bsdtar
pkgs.imagemagick # image tools imagemagick # image tools
pkgs.ffmpeg # video manupilation ffmpeg # video manupilation
pkgs.glow # markdown viewer glow # markdown viewer
pkgs.piper # ratbagd mice config gui piper # ratbagd mice config gui
pkgs.krita # best drawing program krita # best drawing program
pkgs.tutanota-desktop # fjdlkfjldjflkd tutanota-desktop # fjdlkfjldjflkd
pkgs.delfin # jellyfin client delfin # jellyfin client
pkgs.nurl # nix tool nurl # nix tool
pkgs.ripgrep # Neovim telescope dependency ripgrep # Neovim telescope dependency
pkgs.lazygit # Amazing git tui lazygit # Amazing git tui
(pkgs.nerdfonts.override { fonts = [ "CascadiaCode" ]; }) # Best font lm_sensors # Sensor monitoring tool
(nerdfonts.override { fonts = [ "CascadiaCode" ]; }) # Best font
# My custom dmenu build # My custom dmenu build
(pkgs.dmenu.overrideAttrs (oldAttrs: rec { (dmenu.overrideAttrs (oldAttrs: rec {
src = builtins.fetchGit { src = builtins.fetchGit {
url = "https://code.cronyakatsuki.xyz/crony/dmenu"; url = "https://code.cronyakatsuki.xyz/crony/dmenu";
rev = "10dcddf14b38cfd965ab27f084139513baed70bf"; rev = "10dcddf14b38cfd965ab27f084139513baed70bf";
@ -52,7 +53,7 @@
# # You can also create simple shell scripts directly inside your # # You can also create simple shell scripts directly inside your
# # configuration. For example, this adds a command 'my-hello' to your # # configuration. For example, this adds a command 'my-hello' to your
# # environment: # # environment:
# (pkgs.writeShellScriptBin "my-hello" '' # (writeShellScriptBin "my-hello" ''
# echo "Hello, ${config.home.username}!" # echo "Hello, ${config.home.username}!"
# '') # '')
]; ];