Files
Nixos/modules/system/nixos/shells/gnome.nix
T
Administrateur db4c0e1320 Switch to GNOME and Limine bootloader
Migrates the NixOS system to use GNOME as the primary desktop environment and Limine as the bootloader.

This involves removing the KDE Plasma configuration module and adding a dedicated module for Limine. Also includes a minor cleanup in the Darwin home-manager configuration.
2026-06-14 13:01:19 +02:00

45 lines
781 B
Nix

{
lib,
pkgs,
config,
...
}:
with lib;
let
cfg = config.os.shells.gnome;
in
{
options.os.shells.gnome = {
enable = mkEnableOption "System gnome shell service";
};
config = mkIf cfg.enable {
services.displayManager.gdm.enable = true;
services.desktopManager.gnome.enable = true;
services.gnome.games.enable = false;
services.gnome.core-apps.enable = false;
services.gnome.core-developer-tools.enable = false;
services.gvfs.enable = true; # SMB, FTP, ... access
environment = {
gnome.excludePackages = with pkgs; [
gnome-tour
gnome-user-docs
];
systemPackages =
with pkgs;
[ nautilus ]
++ [
loupe
papers
simple-scan
];
};
};
}