more stuff

This commit is contained in:
Kopatz
2024-04-17 16:33:12 +02:00
parent 468c978e62
commit 6a891bec61
35 changed files with 177 additions and 74 deletions

View File

@@ -1,10 +1,10 @@
{config, lib, ...}:
with lib;
let
cfg = config.kop.hardware.firmware;
cfg = config.custom.hardware.firmware;
in
{
options.kop.hardware.firmware = {
options.custom.hardware.firmware = {
enable = mkEnableOption "Enables firmware";
};

View File

@@ -1,10 +1,10 @@
{lib, config, pkgs, ...}:
with lib;
let
cfg = config.kop.hardware.nvidia;
cfg = config.custom.hardware.nvidia;
in
{
options.kop.hardware.nvidia = {
options.custom.hardware.nvidia = {
enable = mkEnableOption "Enables nvidia gpus";
};

View File

@@ -1,10 +1,10 @@
{config, lib, ...}:
with lib;
let
cfg = config.kop.hardware.scheduler;
cfg = config.custom.hardware.scheduler;
in
{
options.kop.hardware.scheduler = {
options.custom.hardware.scheduler = {
enable = mkEnableOption "Enables scheduler";
};

View File

@@ -1,10 +1,10 @@
{config, lib, ...}:
with lib;
let
cfg = config.kop.hardware.ssd;
cfg = config.custom.hardware.ssd;
in
{
options.kop.hardware.ssd = {
options.custom.hardware.ssd = {
enable = mkEnableOption "Enables fstrim";
};

View File

@@ -1,10 +1,10 @@
{ pkgs, lib, config, ... }:
with lib;
let
cfg = config.kop.hardware.vfio;
cfg = config.custom.hardware.vfio;
in
{
options.kop.hardware.vfio = {
options.custom.hardware.vfio = {
enable = mkEnableOption "Enables vfio";
};

View File

@@ -1,10 +1,10 @@
{ config, pkgs, lib, ...}:
with lib;
let
cfg = config.kop.hardware.wooting;
cfg = config.custom.hardware.wooting;
in
{
options.kop.hardware.wooting = {
options.custom.hardware.wooting = {
enable = mkEnableOption "Enable wooting hardware support";
};