dotfiles/home-manager/packages.nix

56 lines
832 B
Nix
Raw Permalink Normal View History

2024-01-19 23:20:41 +00:00
{ config, lib, pkgs, host, ... }:
2024-01-16 21:08:19 +00:00
{
nixpkgs.config.allowUnfree = true;
nixpkgs.config.allowBroken = true;
nixpkgs.config.allowUnsupportedSystem = true;
nixpkgs.config.permittedInsecurePackages = [
"electron-25.9.0"
];
home.packages = with pkgs; [
# gui
firefox
obsidian
_1password-gui
bottles
protonup-qt
beekeeper-studio
chromium
# tools
btop
nvtop
neofetch
rnix-lsp
direnv
bat
eza
lazygit
aha
unzip
jq
ripgrep
fzf
httpie
2024-01-19 23:20:41 +00:00
xclip
distrobox
2024-01-16 21:08:19 +00:00
# languages
nodejs yarn
crystal shards
2024-01-19 23:20:41 +00:00
python3 pyenv poetry
2024-01-16 21:08:19 +00:00
nim
zig
bun
deno
# zsh stuff
zsh
spaceship-prompt
# xpipe
(import ./packages/xpipe.nix { inherit pkgs; })
2024-01-19 23:20:41 +00:00
] ++ (import ../scripts { inherit pkgs host; });
2024-01-16 21:08:19 +00:00
}