This repository has been archived on 2024-07-10. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles-nix/nix/systems/packages.nix

85 lines
1.3 KiB
Nix

{ config, pkgs, ... }: {
# packages
nixpkgs.config.allowUnfree = true;
environment.systemPackages = with pkgs; [
# fonts
font-awesome
jetbrains-mono
ubuntu_font_family
# hyprland
adwaita-qt
brightnessctl
unstable.grimblast
grim
imagemagick
jq
lxappearance-gtk2
unstable.satty
slurp
socat
swaybg
swaylock
waybar
wofi
xfce.xfce4-settings
# system
easyeffects
fwupd
intel-gpu-tools
killall
radeontop
pciutils
powertop
solaar
spice-vdagent
sshfs
wl-clipboard
# usability
bat
btop
unstable.bitwarden
unstable.clipse
cmatrix
dnsutils
fastfetch
firefox
git
gimp
unstable.google-chrome
htop
kitty
meld
mpv
unstable.multiviewer-for-f1
unstable.microsoft-edge
nextcloud-client
screen
unstable.spotify
unstable.vscode
vim
wget
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;
};
}