34 lines
627 B
Nix
34 lines
627 B
Nix
|
{ pkgs, config, lib, ... }:
|
||
|
with lib;
|
||
|
|
||
|
let
|
||
|
cfg = config.eboskma.base;
|
||
|
in
|
||
|
{
|
||
|
options.eboskma.base = {
|
||
|
kernel = mkOption {
|
||
|
description = "which kernel to run";
|
||
|
type = types.unspecified;
|
||
|
default = pkgs.linuxKernel.packages.linux_5_14;
|
||
|
};
|
||
|
|
||
|
plymouth = {
|
||
|
enable = mkEnableOption "enable plymouth splash screen";
|
||
|
};
|
||
|
|
||
|
work = mkOption {
|
||
|
description = "whether this is a work machine.";
|
||
|
type = types.bool;
|
||
|
default = false;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
config = {
|
||
|
boot.kernelPackages = cfg.kernel;
|
||
|
|
||
|
boot.plymouth = mkIf (cfg.plymouth.enable) {
|
||
|
enable = true;
|
||
|
};
|
||
|
};
|
||
|
}
|