40 lines
739 B
Nix
40 lines
739 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;
|
|
};
|
|
|
|
hardware.opengl = {
|
|
enable = true;
|
|
driSupport = true;
|
|
};
|
|
|
|
programs.fish.enable = true;
|
|
};
|
|
}
|