Files
nix/home/common/programs/desktop/default.nix
T
Miguel Palhas 3d4e2102b3 Fixing arrakis
2024-12-05 18:45:56 +00:00

50 lines
656 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
zathura
lxappearance
# networking
networkmanagerapplet
mtr
dnsutils
# 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;
};
};
}