dotfiles/home-manager/modules/misc/gnome-extras.nix
2024-10-31 13:26:25 -05:00

18 lines
299 B
Nix
Executable file

{pkgs, ...}: {
home.packages = builtins.attrValues {
inherit
(pkgs)
evince
file-roller
gnome-calculator
gnome-characters
gnome-disk-utility
gnome-system-monitor
nautilus
;
inherit
(pkgs.gnome)
gnome-software
;
};
}