dotfiles/nixos/gui.nix
2020-05-02 09:18:11 +01:00

35 lines
780 B
Nix

{ config, pkgs, ... }:
{
gtk = {
enable = true;
iconTheme = {
name = "Adwaita";
package = pkgs.gnome3.adwaita-icon-theme;
};
};
qt = {
enable = true;
};
imports = [
./vscode.nix
];
home.packages = with pkgs; [
passff-host
gnome3.gnome-screenshot
apvlv xidlehook blueman
fontconfig xclip gimp glxinfo
notable evince signal-desktop
libreoffice vlc
unstable.tor-browser-bundle-bin
jetbrains.goland unstable.jetbrains.clion jetbrains.idea-ultimate unstable.android-studio
yubico-piv-tool yubikey-personalization yubikey-personalization-gui yubikey-manager-qt
slack discord gnome3.nautilus gnome3.eog
hopper
unstable.qemu unstable.aqemu unstable.foldingathome
spotify shotwell
];
}