right before reorganizing - i3 stable

This commit is contained in:
alisceon 2025-08-24 16:05:54 +02:00
parent 4976ff2b34
commit 534652294a
12 changed files with 755 additions and 87 deletions

33
hosts/common/wm/gnome.nix Normal file
View file

@ -0,0 +1,33 @@
{ config, pkgs, ... }:
{
security.sudo.wheelNeedsPassword = false;
services = {
displayManager = {
gdm.enable = true;
gdm.wayland = true;
};
desktopManager.gnome.enable = true;
gnome = {
gnome-keyring.enable = true;
gnome-initial-setup.enable = false;
};
}; # end services
environment = {
gnome.excludePackages = with pkgs; [
evolution
geary
gnome-contacts
gnome-music
gnome-user-docs
gnome-tour
gnome-weather
gnome-maps
gnome-calendar
gnome-initial-setup
gnome-clocks
]; # end gnome.excludePackages
}; # end environment
} #end file