nix/modules/packages/default.nix
2024-07-01 11:08:55 +02:00

75 lines
1.1 KiB
Nix

{ config, pkgs, ... }:
{
services.blueman.enable = true;
hardware.bluetooth.enable = true;
virtualisation.docker.rootless.enable = true;
virtualisation.docker.enable = true;
nixpkgs.config.allowUnfree = true;
programs.steam.enable = true;
services = {
syncthing = {
enable = true;
user = "joy";
dataDir = "/home/joy/";
configDir = "/home/joy/.config/syncthing";
};
};
environment.systemPackages = with pkgs; [
#Games
alacritty
ark
prismlauncher
zulu17
lutris
mangohud
#hackerman
neovim
vim
fastfetch
freshfetch
cmatrix
cava
nitch
htop
gotop
#chromium
brave
freetube
webcord-vencord
#image/video/music/recording
imv
mpv
cmus
obs-studio
#gui stuff
ark
keepassxc
signal-desktop
transmission_3-gtk
upscayl
cinnamon.nemo
firefox
bottles
thunderbird
gnome.gnome-clocks
gnome.gnome-calculator
gnome.gnome-disk-utility
#random utils
tree
rofi-wayland
screen
git
zip
rar
unzip
unrar
scrcpy
appimage-run
ytmdl
yt-dlp
boxbuddy
distrobox
];
}