nix/modules/packages/default.nix

77 lines
1.1 KiB
Nix
Raw Normal View History

2024-06-05 20:52:52 +02:00
{ config, pkgs, ... }:
{
2024-06-21 11:59:08 +02:00
services.ollama.enable = true;
2024-06-18 17:57:25 +02:00
services.blueman.enable = true;
2024-06-18 17:49:46 +02:00
hardware.bluetooth.enable = true;
2024-06-05 20:52:52 +02:00
virtualisation.docker.rootless.enable = true;
virtualisation.docker.enable = true;
nixpkgs.config.allowUnfree = true;
programs.steam.enable = true;
services = {
syncthing = {
enable = true;
user = "joy";
2024-07-01 07:50:23 +02:00
dataDir = "/home/joy/";
2024-06-05 20:52:52 +02:00
configDir = "/home/joy/.config/syncthing";
};
};
2024-06-08 09:55:10 +02:00
services.flatpak.enable = true;
2024-06-05 20:52:52 +02:00
environment.systemPackages = with pkgs; [
#Games
alacritty
ark
prismlauncher
zulu17
lutris
mangohud
#hackerman
2024-06-25 16:59:38 +02:00
neovim
2024-06-05 20:52:52 +02:00
vim
fastfetch
freshfetch
cmatrix
cava
nitch
htop
gotop
#chromium
brave
freetube
webcord-vencord
#image/video/music/recording
imv
mpv
2024-06-25 16:42:05 +02:00
cmus
2024-07-01 07:50:23 +02:00
obs-studio
2024-06-05 20:52:52 +02:00
#gui stuff
ark
keepassxc
signal-desktop
2024-07-01 07:50:23 +02:00
transmission_3-gtk
2024-06-05 20:52:52 +02:00
upscayl
cinnamon.nemo
2024-06-13 19:31:48 +02:00
firefox
2024-06-05 20:52:52 +02:00
bottles
thunderbird
gnome.gnome-clocks
gnome.gnome-calculator
2024-06-13 19:31:48 +02:00
gnome.gnome-disk-utility
2024-06-05 20:52:52 +02:00
#random utils
2024-07-01 08:08:48 +02:00
tree
2024-06-24 20:39:16 +02:00
rofi-wayland
2024-06-24 16:21:10 +02:00
screen
2024-06-05 20:52:52 +02:00
git
zip
rar
unzip
unrar
scrcpy
appimage-run
ytmdl
yt-dlp
2024-06-18 21:35:27 +02:00
boxbuddy
2024-06-05 20:52:52 +02:00
distrobox
];
}