dotfiles/nixos/gui.nix

37 lines
824 B
Nix
Raw Normal View History

2019-11-23 09:03:58 +00:00
{ config, pkgs, ... }:
{
2020-04-18 17:43:05 +01:00
gtk = {
enable = true;
iconTheme = {
name = "Adwaita";
package = pkgs.gnome3.adwaita-icon-theme;
};
};
qt = {
enable = true;
2020-05-03 08:57:50 +01:00
platformTheme = "gnome";
2020-04-18 17:43:05 +01:00
};
2020-05-02 09:18:11 +01:00
imports = [
./vscode.nix
];
2019-11-23 09:03:58 +00:00
home.packages = with pkgs; [
2020-05-31 11:42:53 +01:00
ssb-patchwork zoom-us
2019-11-23 09:03:58 +00:00
passff-host
2020-05-09 15:24:02 +01:00
gnome3.gnome-screenshot gsettings-desktop-schemas
2020-05-23 14:10:51 +01:00
apvlv xidlehook
2019-11-23 09:03:58 +00:00
fontconfig xclip gimp glxinfo
mindforger
2020-05-03 08:57:50 +01:00
evince signal-desktop
2020-01-10 22:53:28 +00:00
libreoffice vlc
2019-11-23 09:03:58 +00:00
jetbrains.goland unstable.jetbrains.clion jetbrains.idea-ultimate unstable.android-studio
yubico-piv-tool yubikey-personalization yubikey-personalization-gui yubikey-manager-qt
2020-04-18 11:59:42 +01:00
slack discord gnome3.nautilus gnome3.eog
2019-12-21 15:41:27 +00:00
hopper
2020-03-23 12:33:04 +00:00
unstable.qemu unstable.aqemu unstable.foldingathome
2020-03-29 21:28:01 +01:00
spotify shotwell
2019-11-23 09:03:58 +00:00
];
}