fix remaining issues, add app configs, fix gnome theme

Signed-off-by: Jo <johannesreckers2006@gmail.com>
This commit is contained in:
Jo 2024-07-25 14:40:42 +02:00
parent 742706fe0f
commit c06c55a000
10 changed files with 177 additions and 62 deletions
modules/nixos/common/gnome

View file

@ -13,6 +13,8 @@
config,
...
}: {
services.xserver.enable = true;
# Enable GNOME and GDM.
services.xserver.displayManager.gdm.enable = true;
services.xserver.desktopManager.gnome.enable = true;
@ -22,13 +24,13 @@
gedit
cheese
geary
yelp # Help view
epiphany # Gnome web
]) ++ (with pkgs.gnome; [
gnome-music
epiphany # Gnome web
tali # Poker game
iagno # Go game
hitori # Sudoku game
yelp # Help view
gnome-contacts
gnome-initial-setup
]);
@ -43,6 +45,6 @@
};
environment.systemPackages = with pkgs; [
gnome.gnome-tweaks
gnome-tweaks
];
}
}