dot

NixOS dotfiles
git clone https://git.echoz.io/dot.git
Log | Files | Refs

default.nix (213B)


      1 { pkgs, ... }:
      2 {
      3   boot.swraid = {
      4     enable = true;
      5 
      6     # Silence warning.
      7     # This is only here for reading external drives anyway.
      8     mdadmConf = ''
      9       PROGRAM ${pkgs.coreutils}/bin/true
     10     '';
     11   };
     12 }