nix-config/home-manager/sajenim/fuchsia.nix
2025-03-08 12:02:30 +08:00

36 lines
649 B
Nix

{pkgs, ...}: {
imports = [
./global
./features/cli
./features/desktop
./features/editors
./features/games
./features/printing
./features/university
];
# Packages for our user environment
home.packages = with pkgs; [
# Graphics
gimp
# Hardware
piper
pulsemixer
# Multimedia
mpc-cli
ncmpcpp
# Browsers
firefox
];
# Configure GTK 2/3 applications to use gruvbox-material
gtk = {
enable = true;
theme = {
name = "Gruvbox-Material-Dark";
package = pkgs.unstable.gruvbox-material-gtk-theme;
};
iconTheme.name = "Gruvbox-Material-Dark";
};
}