Files
nix/home/common/programs/desktop/default.nix
T
Miguel Palhas 1caba0f480 firefox
2024-10-06 18:14:07 +01:00

43 lines
563 B
Nix

{ pkgs, ... }:
{
imports = [ ./firefox.nix ];
home.packages = with pkgs; [
# various
google-chrome
spotify
spicetify-cli
xfce.thunar
obsidian
mpv
obs-studio
calibre
gimp
font-manager
imv
pavucontrol
# communication
slack
zoom-us
ferdium
# dev tools
ferdium
bruno
bun
];
gtk = {
enable = true;
theme = {
name = "Orchis";
package = pkgs.orchis-theme;
};
iconTheme = {
name = "tela";
package = pkgs.tela-icon-theme;
};
};
}