dotfiles/home-manager/modules/misc/gnome-extras.nix

35 lines
651 B
Nix
Raw Normal View History

2024-10-06 15:25:05 -05:00
{pkgs, ...}: {
home.packages = builtins.attrValues {
inherit
(pkgs)
evince
file-roller
gnome-calculator
gnome-characters
gnome-disk-utility
# gnome-remote-desktop
# gnome-shell-extensions
gnome-system-monitor
# gnome-tweaks
nautilus
;
# inherit
# (pkgs.gnomeExtensions)
# appindicator
# dash-to-panel
# just-perfection
# keep-awake
# no-overview
# notification-banner-reloaded
# paperwm
# start-overlay-in-application-view
# tiling-assistant
# wallpaper-slideshow
# ;
};
}