dotfiles/nixos/gui/default.nix
Cyryl Płotnicki 9966474b58 kernel
2021-05-21 19:39:21 +01:00

68 lines
1.2 KiB
Nix

{ 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; [
anarchism
apvlv
digikam
evince
fontconfig
gimp
glxinfo
gnome3.eog
gnome3.gnome-screenshot
gnome3.nautilus
gsettings-desktop-schemas
keybase-gui
libreoffice
mindforgerPatched.mindforger
passff-host
pdfarranger
python38Packages.binwalk-full
qemu aqemu
shotwell
simple-scan
slack
spotify
ssb-patchwork
unstable.discord
unstable.electrum
unstable.freecad
unstable.ghidra-bin
unstable.hopper
unstable.inkscape
unstable.nyxt
unstable.openscad
unstable.qcad
unstable.signal-desktop
unstable.wireshark
vlc
wineFull
xclip
xidlehook
yubico-piv-tool
yubikey-manager-qt
yubikey-personalization
yubikey-personalization-gui
zoom-us
];
};
}