- Updated Bellerophon configuration to include GNOME desktop settings and packages. - Added GNOME-specific packages and extensions for enhanced user experience. - Introduced scripts for display management tailored for ZenBook Duo under GNOME. - Implemented systemd services for automatic display management and backlight control. - Integrated UWSM for improved session management in Hyprland. - Enhanced lid monitoring and USB display management scripts for ZenBook Duo. - Configured keyring support for GNOME and integrated it with PAM. - Updated display manager settings to enable GDM for GNOME sessions.
29 lines
678 B
Nix
29 lines
678 B
Nix
{pkgs, ...}: {
|
|
services.xserver.desktopManager.gnome.enable = true;
|
|
#environment.sessionVariables.GTK_USE_PORTAL = "1";
|
|
environment.sessionVariables.NIXOS_OZONE_WL = "1";
|
|
|
|
environment.gnome.excludePackages = with pkgs; [
|
|
atomix # puzzle game
|
|
cheese # webcam tool
|
|
epiphany # web browser
|
|
evince # document viewer
|
|
geary # email reader
|
|
gedit # text editor
|
|
gnome-characters
|
|
gnome-shell-extensions
|
|
gnome-music
|
|
gnome-photos
|
|
gnome-terminal
|
|
gnome-tour
|
|
hitori # sudoku game
|
|
iagno # go game
|
|
tali # poker game
|
|
totem # video player
|
|
];
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
gsettings-desktop-schemas
|
|
];
|
|
}
|