mirror of
https://github.com/willemml/dotfiles.nix.git
synced 2025-04-13 19:57:19 +00:00
52 lines
898 B
Nix
52 lines
898 B
Nix
{ pkgs, lib, ... }:
|
|
|
|
let
|
|
darwin = with pkgs; [
|
|
colima
|
|
coreutils
|
|
gnused
|
|
iterm2
|
|
karabiner-elements
|
|
pinentry_mac
|
|
spoof-mac
|
|
(pkgs.callPackage ./packages/qbittorrent-mac.nix { inherit pkgs; })
|
|
(pkgs.callPackage ./packages/spotify-mac.nix { inherit pkgs; })
|
|
(pkgs.callPackage ./packages/vlc-mac.nix { inherit pkgs; })
|
|
];
|
|
linux = with pkgs; [ vlc qbittorrent ];
|
|
in {
|
|
home.packages = with pkgs;
|
|
[
|
|
autoconf
|
|
automake
|
|
bash
|
|
bat
|
|
cmake
|
|
comma
|
|
curl
|
|
discord
|
|
docker
|
|
docker-compose
|
|
fd
|
|
gawk
|
|
htop
|
|
jq
|
|
nix-review
|
|
nmap
|
|
openssh
|
|
pass
|
|
pv
|
|
ripgrep
|
|
rsync
|
|
rustup
|
|
tldr
|
|
units
|
|
unp
|
|
unrar
|
|
unzip
|
|
wget
|
|
yq
|
|
zoom-us
|
|
] ++ lib.optionals stdenv.isLinux linux
|
|
++ lib.optionals stdenv.isDarwin darwin;
|
|
}
|