mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-16 10:05:13 -05:00
52 lines
1.1 KiB
Nix
52 lines
1.1 KiB
Nix
![]() |
{pkgs, ...}: {
|
||
|
services = {
|
||
|
xserver = {
|
||
|
enable = true;
|
||
|
displayManager = {
|
||
|
gdm.enable = true;
|
||
|
gdm.wayland = true;
|
||
|
};
|
||
|
desktopManager.gnome = {
|
||
|
enable = true;
|
||
|
};
|
||
|
};
|
||
|
gnome = {
|
||
|
games.enable = false;
|
||
|
gnome-online-accounts.enable = true;
|
||
|
};
|
||
|
udev.packages = with pkgs; [
|
||
|
gnome.gnome-settings-daemon
|
||
|
];
|
||
|
};
|
||
|
environment = {
|
||
|
variables = {
|
||
|
# WEBKIT_FORCE_SANDBOX = "0";
|
||
|
# WEBKIT_DISABLE_COMPOSITING_MODE = "1";
|
||
|
};
|
||
|
gnome.excludePackages =
|
||
|
(with pkgs; [
|
||
|
gnome-photos
|
||
|
gnome-tour
|
||
|
epiphany # web browser
|
||
|
cheese # webcam tool
|
||
|
geary # email reader
|
||
|
evince # document viewer
|
||
|
totem # video player
|
||
|
yelp # help viewer
|
||
|
gnome-calendar
|
||
|
])
|
||
|
++ (with pkgs.gnome; [
|
||
|
gnome-music
|
||
|
tali # poker game
|
||
|
iagno # go game
|
||
|
hitori # sudoku game
|
||
|
atomix # puzzle game
|
||
|
gnome-clocks
|
||
|
gnome-weather
|
||
|
gnome-maps
|
||
|
gnome-contacts
|
||
|
gnome-characters
|
||
|
]);
|
||
|
};
|
||
|
}
|