29 lines
742 B
Nix
29 lines
742 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
gtk = {
|
|
enable = true;
|
|
iconTheme = {
|
|
name = "Adwaita";
|
|
package = pkgs.gnome3.adwaita-icon-theme;
|
|
};
|
|
};
|
|
qt = {
|
|
enable = true;
|
|
};
|
|
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
|
|
];
|
|
}
|