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.
16 lines
233 B
Nix
16 lines
233 B
Nix
{ 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;
|
|
|
|
};
|
|
}
|