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