refactor: replaced all with with builtins.attrValues

This commit is contained in:
Nick 2024-11-04 19:24:06 -06:00
parent f87d465a2c
commit b08a7694a5
12 changed files with 236 additions and 153 deletions

View file

@ -14,17 +14,21 @@
games.enable = false;
gnome-online-accounts.enable = true;
};
udev.packages = with pkgs; [
gnome.gnome-settings-daemon
];
udev.packages = builtins.attrValues {
inherit
(pkgs.gnome)
gnome-settings-daemon
;
};
};
environment = {
variables = {
# WEBKIT_FORCE_SANDBOX = "0";
# WEBKIT_DISABLE_COMPOSITING_MODE = "1";
};
gnome.excludePackages =
(with pkgs; [
gnome.excludePackages = builtins.attrValues {
inherit
(pkgs)
gnome-photos
gnome-tour
epiphany # web browser
@ -34,8 +38,9 @@
totem # video player
yelp # help viewer
gnome-calendar
])
++ (with pkgs.gnome; [
;
inherit
(pkgs.gnome)
gnome-music
tali # poker game
iagno # go game
@ -46,6 +51,7 @@
gnome-maps
gnome-contacts
gnome-characters
]);
;
};
};
}