2025-02-17 06:31:31 +01:00
|
|
|
{pkgs, ...}: {
|
2025-02-14 00:27:51 +01:00
|
|
|
programs = {
|
2025-02-22 02:03:31 +01:00
|
|
|
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;
|
2025-02-20 06:09:03 +01:00
|
|
|
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; [
|
2025-02-21 09:19:21 +01:00
|
|
|
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
|
|
|
|
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
|
2025-02-20 12:22:23 +01:00
|
|
|
picard
|
2025-02-14 00:27:51 +01:00
|
|
|
pkg-config
|
|
|
|
playerctl
|
|
|
|
ripgrep
|
|
|
|
socat
|
|
|
|
unrar
|
|
|
|
unzip
|
|
|
|
usbutils
|
|
|
|
v4l-utils
|
|
|
|
virt-viewer
|
|
|
|
wget
|
2025-02-22 02:03:31 +01:00
|
|
|
ytmdl
|
2025-02-14 00:27:51 +01:00
|
|
|
];
|
|
|
|
}
|