29 lines
397 B
Nix
29 lines
397 B
Nix
{pkgs, ...}: {
|
|
imports = [
|
|
./global
|
|
./features/desktop
|
|
./features/printing
|
|
./features/games
|
|
];
|
|
|
|
home = {
|
|
packages = with pkgs; [
|
|
# Graphics
|
|
gimp
|
|
inkscape
|
|
krita
|
|
# Hardware
|
|
openrgb
|
|
libratbag
|
|
piper
|
|
pulsemixer
|
|
# Media
|
|
mpc-cli
|
|
ncmpcpp
|
|
jellyfin-media-player
|
|
# Misc
|
|
firefox
|
|
];
|
|
};
|
|
}
|