add supermicro x12scz-tln4f
This commit is contained in:
parent
e819a2993a
commit
82ada4b2b3
|
@ -156,6 +156,7 @@ See code for all available configurations.
|
|||
| [Purism Librem 15v3](purism/librem/13v3) | `<nixos-hardware/purism/librem/15v3>` |
|
||||
| [Supermicro A1SRi-2758F](supermicro/a1sri-2758f) | `<nixos-hardware/supermicro/a1sri-2758f>` |
|
||||
| [Supermicro X10SLL-F](supermicro/x10sll-f) | `<nixos-hardware/supermicro/x10sll-f>` |
|
||||
| [Supermicro X12SCZ-TLN4F](supermicro/x12scz-tln4f) | `<nixos-hardware/supermicro/x12scz-tln4f>` |
|
||||
| [System76 (generic)](system76) | `<nixos-hardware/system76>` |
|
||||
| [System76 Darter Pro 6](system76/darp6) | `<nixos-hardware/system76/darp6>` |
|
||||
| [Toshiba Chromebook 2 `swanky`](toshiba/swanky) | `<nixos-hardware/toshiba/swanky>` |
|
||||
|
|
|
@ -93,6 +93,7 @@
|
|||
purism-librem-15v3 = import ./purism/librem/15v3;
|
||||
supermicro-a1sri-2758f = import ./supermicro/a1sri-2758f;
|
||||
supermicro-x10sll-f = import ./supermicro/x10sll-f;
|
||||
supermicro-x12scz-tln4f = import ./supermicro/x12scz-tln4f;
|
||||
thoshiba-swanky = import ./toshiba/swanky;
|
||||
tuxedo-infinitybook-v4 = import ./tuxedo/infinitybook/v4;
|
||||
common-cpu-amd = import ./common/cpu/amd;
|
||||
|
|
|
@ -4,6 +4,5 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
boot.kernelModules = [ "ipmi_devintf" "ipmi_si" ];
|
||||
environment.systemPackages = [ pkgs.ipmitool ];
|
||||
imports = [ ../. ];
|
||||
}
|
||||
|
|
5
supermicro/default.nix
Normal file
5
supermicro/default.nix
Normal file
|
@ -0,0 +1,5 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
boot.kernelModules = [ "ipmi_devintf" "ipmi_si" ];
|
||||
environment.systemPackages = [ pkgs.ipmitool ];
|
||||
}
|
|
@ -1,9 +1,11 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
environment.systemPackages = with pkgs; [ ipmitool ];
|
||||
imports = [
|
||||
../.
|
||||
];
|
||||
|
||||
boot.kernelModules = [ "jc42" "ipmi_devintf" "ipmi_si" "tpm_rng" ];
|
||||
boot.kernelModules = [ "jc42" "tpm_rng" ];
|
||||
|
||||
# services.cron.systemCronJobs = [
|
||||
# # Reset 5-minute watchdog timer every minute
|
||||
|
|
7
supermicro/x12scz-tln4f/default.nix
Normal file
7
supermicro/x12scz-tln4f/default.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
{ ... }:
|
||||
{
|
||||
imports = [
|
||||
../../common/cpu/intel
|
||||
../.
|
||||
];
|
||||
}
|
Loading…
Reference in a new issue