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

77 lines
1.1 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; [
# 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
fwupd
intel-gpu-tools
killall
radeontop
pciutils
2024-03-24 21:56:03 +01:00
powertop
2024-03-24 16:15:15 +01:00
solaar
spice-vdagent
sshfs
wl-clipboard
# usability
bat
btop
unstable.bitwarden
unstable.clipse
2024-03-25 11:14:17 +01:00
cmatrix
dnsutils
2024-03-25 00:58:59 +01:00
fastfetch
2024-03-24 16:15:15 +01:00
firefox
git
gimp
unstable.google-chrome
htop
kitty
meld
mpv
unstable.microsoft-edge
nextcloud-client
screen
unstable.spotify
2024-03-25 00:58:59 +01:00
trayscale
2024-03-24 16:15:15 +01:00
unstable.vscode
vim
wget
];
# 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;
};
}