dotfiles.nix/home-manager/sajenim/fuchsia.nix

29 lines
397 B
Nix
Raw Permalink Normal View History

2024-08-08 09:02:42 +08:00
{pkgs, ...}: {
2024-01-21 21:01:42 +08:00
imports = [
./global
2024-07-27 08:25:17 +08:00
./features/desktop
2024-01-21 21:01:42 +08:00
./features/printing
./features/games
];
home = {
packages = with pkgs; [
# Graphics
gimp
inkscape
krita
# Hardware
2024-07-08 12:53:48 +08:00
openrgb
2024-01-21 21:01:42 +08:00
libratbag
piper
2024-02-13 22:56:59 +08:00
pulsemixer
# Media
2024-04-01 09:59:56 +08:00
mpc-cli
2024-02-13 22:56:59 +08:00
ncmpcpp
2024-01-22 20:00:20 +08:00
jellyfin-media-player
2024-02-13 22:56:59 +08:00
# Misc
2024-01-22 20:00:20 +08:00
firefox
2024-01-21 21:01:42 +08:00
];
};
}