dotfiles/nixos/gui/default.nix

68 lines
1.2 KiB
Nix
Raw Normal View History

2020-07-25 10:09:10 +01:00
{ config, pkgs, ... }:
{
home-manager.users.cyryl = {...}: {
gtk = {
enable = true;
iconTheme = {
name = "Adwaita";
package = pkgs.gnome3.adwaita-icon-theme;
};
};
qt = {
enable = true;
platformTheme = "gnome";
};
imports = [
./vscode.nix
];
home.packages = with pkgs; [
2021-04-18 07:18:58 +01:00
anarchism
apvlv
digikam
evince
fontconfig
gimp
glxinfo
gnome3.eog
gnome3.gnome-screenshot
gnome3.nautilus
gsettings-desktop-schemas
2020-11-22 19:02:43 +00:00
keybase-gui
libreoffice
mindforgerPatched.mindforger
2020-07-25 10:09:10 +01:00
passff-host
2021-05-21 19:39:21 +01:00
pdfarranger
2021-04-18 07:18:58 +01:00
python38Packages.binwalk-full
2020-07-25 10:09:10 +01:00
qemu aqemu
shotwell
simple-scan
2021-04-18 07:18:58 +01:00
slack
spotify
2021-04-18 07:18:58 +01:00
ssb-patchwork
unstable.discord
unstable.electrum
2021-04-17 21:36:37 +01:00
unstable.freecad
2021-04-18 07:18:58 +01:00
unstable.ghidra-bin
unstable.hopper
2021-04-17 21:36:37 +01:00
unstable.inkscape
2021-05-15 14:24:41 +01:00
unstable.nyxt
2021-04-18 07:18:58 +01:00
unstable.openscad
2021-04-17 22:04:42 +01:00
unstable.qcad
2021-04-18 07:18:58 +01:00
unstable.signal-desktop
unstable.wireshark
vlc
wineFull
2021-04-18 07:18:58 +01:00
xclip
xidlehook
yubico-piv-tool
yubikey-manager-qt
yubikey-personalization
yubikey-personalization-gui
zoom-us
2020-07-25 10:09:10 +01:00
];
};
}