nixos configurations
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
393 B

4 months ago
  1. { config, lib, pkgs, settings, ... }:
  2. {
  3. # Import modules.
  4. imports = [
  5. ../modules/nixos/common.nix
  6. ../modules/nixos/network.nix
  7. ../modules/nixos/users.nix
  8. ../modules/nixos/management.nix
  9. ../modules/nixos/monitoring.nix
  10. ../modules/nixos/virtualization.nix
  11. ];
  12. # Allow unsupported SPF+ modules.
  13. boot.kernelParams = [
  14. "ixgbe.allow_unsupported_sfp=1"
  15. ];
  16. }