This commit is contained in:
2023-10-21 10:52:00 +02:00
commit fa83a2df09
5 changed files with 272 additions and 0 deletions

43
modules/packages.nix Normal file
View File

@ -0,0 +1,43 @@
{ 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
]);
# packages in global env
environment.systemPackages = with pkgs; [
# system utilities
wget
# web
firefox
# development
openscad
vscode
git
prusa-slicer
rustup
git
# multimedia
vlc
gimp
];
}