-
Notifications
You must be signed in to change notification settings - Fork 0
/
packages.nix
127 lines (118 loc) · 2.24 KB
/
packages.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
pkgs,
inputs,
pkgs-unstable,
...
}: {
# nixpkgs.overlays = [inputs.neovim-nightly-overlay.overlay];
nixpkgs.overlays = [
# (self: super: {
# python311 = super.python311.override {
# x11Support = true;
# };
# })
# (self: super: {
# python312 = super.python312.override {
# x11Support = true;
# };
# })
# inputs.neovim-nightly-overlay.overlay
];
environment.systemPackages = with pkgs-unstable; [
# General Command Line Tools
eza
bat
fd
fzf
ripgrep
tree
wget
curl
unzip
jq
delta
du-dust
duf
# mcfly
procs
tldr
pyright
nodePackages.sql-formatter
pre-commit
devenv
ruff-lsp
# General Command Line Applications
taskwarrior3
rclone
tmux
poppler_utils # PDF Tools
# pipe-viewer
recapp
# Toolchains
openjdk17
libgccjit
poetry
# libGL
# libsForQt5.qtwayland
# qt5.qtwayland
# qt6.qtwayland
# GUI Applications
keepassxc
libreoffice
google-chrome
chromium
firefox
# librewolf
obsidian
heroic
mpv
# pulsar
# wireshark
# kicad
# nyxt
libsForQt5.krfb
wl-clipboard
wl-clipboard-x11
neovide
newsflash
virt-manager
virt-viewer
qemu
# Games
# endless-sky
# bsdgames
# Gnome specific
# gnome3.gnome-tweaks
# gnome3.gnome-remote-desktop
# gnomeExtensions.dash-to-panel
# gnomeExtensions.appindicator
# gnomeExtensions.just-perfection
# gnomeExtensions.allow-locked-remote-desktop
# Nix tools
alejandra # Nix code formatter
manix # Nix doc searcher
nh
# System
pavucontrol
inotify-tools
solaar
inputs.agenix.packages."${system}".default
];
programs = {
steam = {
enable = true;
remotePlay.openFirewall = true; # Open ports in the firewall for Steam Remote Play
dedicatedServer.openFirewall = true; # Open ports in the firewall for Source Dedicated Server
};
neovim = {
enable = true;
defaultEditor = true;
viAlias = true;
vimAlias = true;
};
git.enable = true;
wireshark.enable = true;
adb.enable = true;
kdeconnect.enable = true;
};
}