-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.nix
67 lines (49 loc) · 966 Bytes
/
package.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{ config, pkgs, lib, ... }:
#let
# unstable = import (builtins.fetchTarball https://github.com/nixos/nixpkgs/tarball/nixpkgs-unstable)
# { config = config.nixpkgs.config; };
#in
#using unstable means regular updates, ie more data usage
{
imports = [
./pkgs/nvim.nix
./pkgs/fonts.nix
./pkgs/git.nix
./pkgs/fish.nix
];
home.packages = with pkgs; [
## your package
btop
dbeaver
#term
fish
#android tools
android-tools
scrcpy
#developer
git
#go
terraform
git-cola
kubectl
helix
#cachix
cachix gtk3
#nodejs
yarn
nodePackages_latest.vue-cli
nodePackages_latest.elasticdump
#php 8.1
php
php81Packages.composer
#youtube
yt-dlp
freshfetch
#security
sqlmap subfinder metasploit burpsuite
doctl s3cmd
#database
jetbrains.datagrip
];
nixpkgs.config.allowUnfree = true;
}