nixos-config/modules/base/default.nix

74 lines
1.3 KiB
Nix
Raw Normal View History

{ pkgs
, config
, lib
, ...
2022-03-01 22:19:03 +01:00
}:
with lib; let
cfg = config.eboskma.base;
qmkUdevRules = builtins.readFile ./qmk.rules;
2022-03-15 08:30:37 +01:00
probersRules = pkgs.callPackage ./probe-rs {
inherit (pkgs.stdenv) mkDerivation;
inherit lib;
};
in
{
2021-11-17 16:32:18 +01:00
options.eboskma.base = {
kernel = mkOption {
description = "which kernel to run";
type = types.unspecified;
2022-05-04 10:46:29 +02:00
default = pkgs.linuxPackages;
2021-11-17 16:32:18 +01:00
};
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;
2022-05-03 18:17:38 +02:00
boot.plymouth = mkIf cfg.plymouth.enable {
2021-11-17 16:32:18 +01:00
enable = true;
};
2021-11-18 15:02:12 +01:00
hardware.opengl = {
enable = true;
driSupport = true;
2022-03-01 08:10:57 +01:00
extraPackages = with pkgs; [
rocm-opencl-icd
rocm-opencl-runtime
rocm-runtime
];
2021-11-18 15:02:12 +01:00
};
2021-11-21 19:07:12 +01:00
programs.fish.enable = true;
environment.systemPackages = with pkgs; [
2022-03-01 08:10:57 +01:00
clinfo
2021-12-06 09:58:39 +01:00
dig
dogdns
file
2021-12-06 09:58:39 +01:00
ht-rust
2022-02-09 08:13:16 +01:00
jq
nix-template
2022-01-09 14:13:08 +01:00
nvd
2022-02-09 08:13:16 +01:00
usbutils
2022-03-18 21:14:51 +01:00
zip
];
2021-12-18 16:23:14 +01:00
services.udev = {
extraRules = qmkUdevRules;
2022-03-15 08:30:37 +01:00
packages = [
probersRules
];
2021-12-18 16:23:14 +01:00
};
2021-11-17 16:32:18 +01:00
};
}