zaneyos/modules/core/packages.nix

75 lines
1.7 KiB
Nix
Raw Normal View History

2025-02-17 06:31:31 +01:00
{pkgs, ...}: {
2025-02-14 00:27:51 +01:00
programs = {
firefox.enable = false; # Firefox is not installed by defualt
2025-02-14 00:27:51 +01:00
dconf.enable = true;
seahorse.enable = true;
fuse.userAllowOther = true;
virt-manager.enable = true;
mtr.enable = true;
adb.enable = true;
2025-02-14 00:27:51 +01:00
gnupg.agent = {
enable = true;
enableSSHSupport = true;
};
thunar = {
enable = true;
plugins = with pkgs.xfce; [
thunar-archive-plugin
thunar-volman
];
};
};
nixpkgs.config.allowUnfree = true;
environment.systemPackages = with pkgs; [
amfora # Fancy Terminal Browser For Gemini Protocol
appimage-run # Needed For AppImage Support
brave # Brave Browser
brightnessctl # For Screen Brightness Control
cmatrix # Matrix Movie Effect In Terminal
cowsay # Great Fun Terminal Program
docker-compose # Allows Controlling Docker From A Single File
duf # Utility For Viewing Disk Usage In Terminal
eza # Beautiful ls Replacement
ffmpeg # Terminal Video / Audio Editing
ffmpegthumbnailer # Need for video / image preview in file mgr
file-roller # Archive Manager
gedit # Simple Graphical Text Editor
gimp # Great Photo Editor
greetd.tuigreet # The Login Manager (Sometimes Referred To As Display Manager)
htop # Simple Terminal Based System Monitor
2025-02-14 00:27:51 +01:00
hyprpicker
imv
inxi
killall
libnotify
libvirt
lm_sensors
lolcat
lshw
lxqt.lxqt-policykit
meson
mpv
ncdu
ninja
nixfmt-rfc-style
pavucontrol
pciutils
picard
2025-02-14 00:27:51 +01:00
pkg-config
playerctl
ripgrep
socat
unrar
unzip
usbutils
v4l-utils
virt-viewer
wget
ytmdl
2025-02-14 00:27:51 +01:00
];
}