{ config, pkgs, ... }: {
# packages
nixpkgs.config.allowUnfree = true;
environment.systemPackages = with pkgs; [
# system
btop
easyeffects
fastfetch
fwupd
htop
intel-gpu-tools
killall
radeontop
pciutils
powertop
solaar
spice-vdagent
sshfs
wl-clipboard
# hyprland
adwaita-qt
brightnessctl
grim
unstable.grimblast
unstable.hyprlock
imagemagick
jq
libnotify
lxappearance-gtk2
unstable.satty
slurp
socat
swaybg
waybar
wofi
xfce.xfce4-settings
# fonts
font-awesome
jetbrains-mono
ubuntu_font_family
# browsers
firefox
unstable.google-chrome
unstable.microsoft-edge
# general cli utilities
bat
unstable.clipse
cmatrix
distrobox
git
screen
podman
podman-compose
vim
wget
# general gui utilities
unstable.bitwarden
gimp
meld
nextcloud-client
unstable.vscode
# multimedia
mpv
unstable.multiviewer-for-f1
unstable.spotify
# dns utilities
dnsutils
whois
# office
remmina
teams-for-linux
teamviewer
webex
];
# services
services.blueman.enable = true;
services.fwupd.enable = true;
services.openssh.enable = true;
services.printing.enable = true;
services.tailscale = {
enable = true;
package = pkgs.unstable.tailscale;
};
}