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-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";
dataDir = "/home/joy/sync";
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
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
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-06-13 19:31:48 +02:00
cliphist
wl-clipboard
2024-06-05 20:52:52 +02:00
git
zip
rar
unzip
unrar
scrcpy
lm_sensors
appimage-run
ytmdl
yt-dlp
distrobox
wget
2024-06-13 19:31:48 +02:00
unixtools.ifconfig
2024-06-05 20:52:52 +02:00
];
}