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.
This commit is contained in:
2026-06-14 13:01:19 +02:00
parent 5fbdbe4d3e
commit db4c0e1320
5 changed files with 19 additions and 43 deletions
+15
View File
@@ -0,0 +1,15 @@
{ lib, config, ... }:
with lib;
let
cfg = config.os.boot.limine;
in
{
options.os.boot.limine = {
enable = mkEnableOption "Boot Limine service";
};
config = mkIf cfg.enable {
boot.loader.limine.enable = true;
};
}