nix/modules/packages/default.nix
2024-06-21 11:59:08 +02:00

80 lines
1.2 KiB
Nix

{ config, pkgs, ... }:
{
services.ollama.enable = true;
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/sync";
configDir = "/home/joy/.config/syncthing";
};
};
services.flatpak.enable = true;
environment.systemPackages = with pkgs; [
#Games
alacritty
ark
rofi
prismlauncher
zulu17
lutris
mangohud
#hackerman
vim
fastfetch
freshfetch
cmatrix
cava
nitch
htop
gotop
#chromium
brave
freetube
webcord-vencord
#image/video/music/recording
imv
mpv
moc
obs-studio
#gui stuff
ark
keepassxc
signal-desktop
transmission-gtk
upscayl
cinnamon.nemo
firefox
bottles
thunderbird
gnome.gnome-clocks
gnome.gnome-calculator
gnome.gnome-disk-utility
#random utils
pciutils
cliphist
wl-clipboard
git
zip
rar
unzip
unrar
scrcpy
lm_sensors
appimage-run
ytmdl
yt-dlp
boxbuddy
distrobox
wget
unixtools.ifconfig
];
}