dotfiles/nixos/gui.nix

37 lines
850 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; [
passff-host
2020-05-09 15:24:02 +01:00
gnome3.gnome-screenshot gsettings-desktop-schemas
2020-02-29 14:00:42 +00:00
apvlv xidlehook blueman
2019-11-23 09:03:58 +00:00
fontconfig xclip gimp glxinfo
2020-05-03 08:57:50 +01:00
notable mindforger
evince signal-desktop
2020-01-10 22:53:28 +00:00
libreoffice vlc
2020-01-12 12:51:00 +00:00
unstable.tor-browser-bundle-bin
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
];
}