nix/modules/packages/default.nix

68 lines
855 B
Nix
Raw Normal View History

2024-07-08 14:52:27 +02:00
{ pkgs, ... }:
2024-06-05 20:52:52 +02:00
{
2024-08-09 00:06:08 +02:00
nixpkgs.config.packageOverrides = pkgs: {
noriskclient-launcher = pkgs.callPackage ./../NoRiskClient/default.nix { };
};
2024-06-05 20:52:52 +02:00
environment.systemPackages = with pkgs; [
#hackerman
2024-08-09 00:06:08 +02:00
noriskclient-launcher
2024-06-05 20:52:52 +02:00
fastfetch
cmatrix
cava
nitch
gotop
2024-07-16 09:34:51 +02:00
sl
cbonsai
pipes
2024-07-04 22:23:36 +02:00
#mutt
2024-07-15 20:38:08 +02:00
mutt-wizard
neomutt
curl
isync
msmtp
pass
lynx
notmuch
abook
2024-06-05 20:52:52 +02:00
#image/video/music/recording
imv
mpv
2024-06-25 16:42:05 +02:00
cmus
2024-07-01 07:50:23 +02:00
obs-studio
2024-06-05 20:52:52 +02:00
#gui stuff
2024-07-23 19:40:00 +02:00
keepassxc
2024-07-04 15:22:30 +02:00
vesktop
2024-06-05 20:52:52 +02:00
signal-desktop
upscayl
2024-08-03 00:19:54 +02:00
nemo
2024-06-13 19:31:48 +02:00
firefox
2024-06-05 20:52:52 +02:00
bottles
2024-07-05 17:38:02 +02:00
boxbuddy
2024-08-07 00:13:25 +02:00
waydroid
2024-08-08 15:26:04 +02:00
transmission_4-gtk
2024-07-15 20:30:05 +02:00
#gnome
2024-06-05 20:52:52 +02:00
gnome.gnome-clocks
2024-07-02 12:38:34 +02:00
gnome-calculator
gnome-disk-utility
2024-07-05 20:36:20 +02:00
#random shit
2024-07-16 09:34:51 +02:00
htop
2024-07-16 12:00:22 +02:00
bat
2024-07-05 20:36:20 +02:00
zulu17
2024-06-24 16:21:10 +02:00
screen
2024-07-05 20:36:20 +02:00
tree
2024-06-05 20:52:52 +02:00
zip
unzip
scrcpy
appimage-run
yt-dlp
distrobox
2024-07-08 20:53:46 +02:00
font-awesome
2024-08-08 15:26:04 +02:00
lm_sensors
2024-07-16 11:59:12 +02:00
#laptop
brightnessctl
2024-08-06 10:09:49 +02:00
networkmanagerapplet
2024-06-05 20:52:52 +02:00
];
}