26 lines
471 B
Nix
26 lines
471 B
Nix
{pkgs, ...}: {
|
|
imports = [
|
|
./global
|
|
./features/cli
|
|
./features/desktop
|
|
./features/editors
|
|
./features/games
|
|
./features/printing
|
|
];
|
|
|
|
home = {
|
|
packages = with pkgs; [
|
|
# Graphics
|
|
gimp inkscape krita
|
|
# Hardware
|
|
libratbag piper pulsemixer
|
|
# Media
|
|
mpc-cli ncmpcpp jellyfin-media-player
|
|
# Browsers
|
|
firefox google-chrome
|
|
# University
|
|
libreoffice calibre x2goclient zoom-us
|
|
];
|
|
};
|
|
}
|