Skip to content

Commit

Permalink
feat: enable mdadm service and set mailAddress
Browse files Browse the repository at this point in the history
  • Loading branch information
tcarrio committed Nov 10, 2024
1 parent 02ae75e commit a055ac0
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion nixos/server/blck0/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,13 @@
../../mixins/services/bluetooth.nix
];


boot.swraid.enable = true;
services.mdadm = {
enable = true;
mailAddress = "[email protected]";
};

oxc.containerisation.enable = true;
oxc.virtualisation.enable = true;

Expand All @@ -26,7 +33,6 @@
initrd.availableKernelModules = [ "xhci_pci" "ehci_pci" "ahci" "usbhid" "uas" ];
kernelModules = [ "kvm-intel" ];
kernelPackages = lib.mkDefault pkgs.linuxPackages_5_15;
swraid.enable = true;
};

# Use passed hostname to configure basic networking
Expand Down

0 comments on commit a055ac0

Please sign in to comment.