switch to gnome
Some checks are pending
Flake.lock / build (push) Waiting to run

This commit is contained in:
Mohamed Chrayed 2024-09-04 12:47:44 +02:00
parent 294244864f
commit 1639264bd5
3 changed files with 38 additions and 2 deletions

View File

@ -51,7 +51,7 @@
./modules/system/plasma
];
displaySystemModules = [
./modules/system/sddm
./modules/system/gdm
];
gamingSystemModules = [
./modules/system/controller
@ -70,7 +70,7 @@
./modules/user/shell
];
desktopUserModules = [
./modules/user/plasma
./modules/user/gnome
];
gamingUserModules = [];
serverUserModules = [];

View File

@ -1,5 +1,37 @@
{ pkgs, ... }:
{
# Install gnome
services.desktopManager.gnome.enable = true;
services.xserver.enable = false;
# Install Applications
programs.file-roller.enable = true;
services.gnome.tracker.enable = true;
environment.systemPackages = with pkgs; [
gnome-text-editor
];
# Install Extensions
environment.systemPackages = with pkgs; [
gnomeExtensions.appindicator
];
# Don't install unneeded applications
environment.gnome.excludePackages = (with pkgs; [
gnome-photos
gnome-tour
]) ++ (with pkgs.gnome; [
gnome-music
gnome-terminal
gedit
epiphany
geary
evince
gnome-characters
totem
tali
iagno
hitori
atomix
]);
}

View File

@ -0,0 +1,4 @@
{ user, hostName, pkgs, ... }:
{
}