nix-config/lib/nixos/modules/gnome.nix

15 lines
238 B
Nix
Raw Normal View History

{ pkgs, ... }:
{
services.xserver = {
desktopManager.gnome.enable = true;
2024-06-15 12:17:07 +01:00
displayManager.sddm = {
enable = true;
2024-06-15 12:17:07 +01:00
# wayland = true;
};
};
environment.systemPackages = with pkgs; [ networkmanagerapplet ];
}