init
This commit is contained in:
43
modules/packages.nix
Normal file
43
modules/packages.nix
Normal 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
|
||||
];
|
||||
}
|
Reference in New Issue
Block a user