NIX_System_Configurations/modules/packages.nix

68 lines
1.1 KiB
Nix
Raw Normal View History

2023-10-21 08:52:00 +00:00
{ config, lib, pkgs, modulesPath, ... }:
{
imports =
[];
# packages to exclude from default gnome
environment.gnome.excludePackages = (with pkgs; [
gnome-photos
gnome-tour
]) ++ (with pkgs.gnome; [
gnome-music
yelp # help viewer
epiphany # web browser
geary # email reader
totem # video player
tali # poker game
iagno # go game
hitori # sudoku game
atomix # puzzle game
]);
# disable xterm
services.xserver.excludePackages = [ pkgs.xterm ];
services.fwupd.enable = true;
# For fingerprint support
services.fprintd.enable = lib.mkDefault true;
programs.steam.enable = true;
programs.zsh.enable = true;
2023-10-21 08:52:00 +00:00
# packages in global env
environment.systemPackages = with pkgs; [
# system utilities
wget
2023-10-21 16:26:00 +00:00
scrcpy
2023-11-05 18:46:19 +00:00
cmake
lm_sensors
smartmontools
2023-10-21 08:52:00 +00:00
# web
firefox
# development
openscad
vscode
git
2023-11-05 18:46:19 +00:00
flutter
2023-10-21 08:52:00 +00:00
prusa-slicer
rustup
2023-10-21 16:26:00 +00:00
jetbrains.idea-ultimate
kicad
2023-11-05 18:46:19 +00:00
rstudio
R
2023-10-21 08:52:00 +00:00
# multimedia
vlc
gimp
zoom-us
# file transfer
warp
# gui utilities
pdfarranger
diebahn
2023-10-21 16:26:00 +00:00
appflowy
2023-10-21 08:52:00 +00:00
];
}