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

100 lines
1.4 KiB
Nix
Raw Normal View History

2024-03-24 16:15:15 +01:00
{ config, pkgs, ... }: {
# packages
nixpkgs.config.allowUnfree = true;
environment.systemPackages = with pkgs; [
2024-03-28 11:46:26 +01:00
# system
btop
fastfetch
fwupd
htop
intel-gpu-tools
killall
radeontop
pciutils
pavucontrol
2024-03-28 11:46:26 +01:00
powertop
solaar
spice-vdagent
sshfs
2024-03-24 16:15:15 +01:00
# hyprland
adwaita-qt
brightnessctl
grim
2024-03-28 11:46:26 +01:00
unstable.grimblast
unstable.hypridle
unstable.hyprlock
2024-03-24 16:15:15 +01:00
imagemagick
jq
2024-03-29 23:35:59 +01:00
libnotify
2024-03-24 16:15:15 +01:00
lxappearance-gtk2
unstable.satty
slurp
socat
swaybg
waybar
2024-04-07 01:08:42 +02:00
wl-clipboard
2024-03-24 16:15:15 +01:00
wofi
xfce.xfce4-settings
2024-03-28 11:46:26 +01:00
# fonts
font-awesome
jetbrains-mono
2024-04-07 01:08:42 +02:00
nerdfonts
2024-03-28 11:46:26 +01:00
ubuntu_font_family
2024-03-24 16:15:15 +01:00
2024-03-28 11:46:26 +01:00
# browsers
firefox
2024-03-28 11:46:26 +01:00
unstable.google-chrome
unstable.microsoft-edge
# general cli utilities
2024-03-24 16:15:15 +01:00
bat
2024-03-28 11:46:26 +01:00
unstable.clipse
2024-03-25 11:14:17 +01:00
cmatrix
2024-03-28 16:26:01 +01:00
distrobox
2024-03-24 16:15:15 +01:00
git
2024-03-28 11:46:26 +01:00
screen
2024-03-28 16:26:01 +01:00
podman
podman-compose
2024-03-28 11:46:26 +01:00
vim
wget
# general gui utilities
2024-04-08 14:59:55 +02:00
bitwarden
2024-03-24 16:15:15 +01:00
gimp
meld
2024-03-28 11:46:26 +01:00
nextcloud-client
2024-04-05 14:04:41 +02:00
trayscale
2024-03-28 11:46:26 +01:00
unstable.vscode
# multimedia
2024-03-24 16:15:15 +01:00
mpv
unstable.multiviewer-for-f1
2024-04-08 21:37:06 +02:00
spotify
yt-dlp
2024-03-28 11:46:26 +01:00
# dns utilities
dnsutils
2024-03-25 11:16:01 +01:00
whois
2024-03-25 16:25:58 +01:00
# office
remmina
2024-03-26 07:52:12 +01:00
teams-for-linux
2024-03-26 21:01:46 +01:00
teamviewer
2024-03-25 16:25:58 +01:00
webex
2024-03-24 16:15:15 +01:00
];
# 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;
};
}