NIX_System_Configurations/modules/packages.nix

56 lines
895 B
Nix

{ 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 ];
# packages in global env
environment.systemPackages = with pkgs; [
# system utilities
wget
scrcpy
# web
firefox
# development
openscad
vscode
git
prusa-slicer
rustup
jetbrains.idea-ultimate
kicad
# multimedia
vlc
gimp
# file transfer
warp
# gui utilities
pdfarranger
diebahn
appflowy
];
}