mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-16 10:05:13 -05:00
refactor: replaced all with with builtins.attrValues
This commit is contained in:
parent
f87d465a2c
commit
b08a7694a5
12 changed files with 236 additions and 153 deletions
|
@ -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
|
||||
]);
|
||||
;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue