dotfiles/home-manager/packages.nix

55 lines
759 B
Nix
Raw Normal View History

2024-01-16 21:08:19 +00:00
{ config, lib, pkgs, ... }:
{
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
neovim
bat
eza
lazygit
aha
unzip
jq
ripgrep
fzf
httpie
# languages
nodejs yarn
crystal shards
pyenv poetry
nim
zig
bun
deno
# zsh stuff
zsh
spaceship-prompt
# xpipe
(import ./packages/xpipe.nix { inherit pkgs; })
];
}