mirror of
https://github.com/thilobillerbeck/dotfiles.git
synced 2024-11-12 20:18:49 +01:00
37 lines
849 B
Nix
37 lines
849 B
Nix
{ config, pkgs, lib, ... }:
|
|
{
|
|
home.packages = with pkgs;
|
|
[
|
|
up
|
|
rbenv
|
|
cargo-update
|
|
htop
|
|
rustup
|
|
nixfmt
|
|
nodejs
|
|
bun
|
|
deno
|
|
devbox
|
|
tldr
|
|
flutter
|
|
nurl
|
|
hcloud
|
|
tea
|
|
dgraph
|
|
nix-init
|
|
nodePackages.nodemon
|
|
pocketbase
|
|
surrealdb
|
|
] ++ [
|
|
(import (fetchTarball
|
|
"https://github.com/cachix/devenv/archive/v0.6.2.tar.gz")).default
|
|
(pkgs.nerdfonts.override {
|
|
fonts = [ "JetBrainsMono" "FiraCode" "FiraMono" ];
|
|
})
|
|
(pkgs.writeShellScriptBin "ssh-fix-permissions"
|
|
(builtins.readFile ./scripts/ssh-fix-permissions.sh))
|
|
(pkgs.writeShellScriptBin "yt-dlp-audio"
|
|
(builtins.readFile ./scripts/yt-dlp-audio.sh))
|
|
(callPackage pkgs/docker-craft-cms-dev-env.nix { inherit lib; })
|
|
];
|
|
}
|