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

19 lines
299 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-system-monitor
nautilus
;
2024-10-31 13:26:25 -05:00
inherit
(pkgs.gnome)
gnome-software
;
2024-10-06 15:25:05 -05:00
};
}