outsource info folderstructure
This commit is contained in:
68
common/modules/packages.nix
Normal file
68
common/modules/packages.nix
Normal file
@ -0,0 +1,68 @@
|
||||
{ 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
|
||||
programs.steam.enable = true;
|
||||
programs.zsh.enable = true;
|
||||
|
||||
# packages in global env
|
||||
environment.systemPackages = with pkgs; [
|
||||
# system utilities
|
||||
wget
|
||||
scrcpy
|
||||
cmake
|
||||
lm_sensors
|
||||
smartmontools
|
||||
powertop
|
||||
|
||||
# web
|
||||
firefox
|
||||
|
||||
# development
|
||||
openscad
|
||||
vscode
|
||||
git
|
||||
flutter
|
||||
prusa-slicer
|
||||
rustup
|
||||
jetbrains.idea-ultimate
|
||||
kicad
|
||||
rstudio
|
||||
R
|
||||
|
||||
# multimedia
|
||||
vlc
|
||||
gimp
|
||||
zoom-us
|
||||
|
||||
# file transfer
|
||||
warp
|
||||
|
||||
# gui utilities
|
||||
pdfarranger
|
||||
diebahn
|
||||
appflowy
|
||||
];
|
||||
}
|
Reference in New Issue
Block a user