diff options
author | lassulus <lassulus@lassul.us> | 2021-10-24 16:58:08 +0200 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2021-10-24 16:58:08 +0200 |
commit | 566951d3f0aa9fcc64df3ef5d7bf1fcf0eff04ab (patch) | |
tree | c2068225a1610b165a319f82726bc9c5606d73d7 /lass/1systems/prism | |
parent | 4c15270e18861dd84036d776dd3143a74f7ea9b2 (diff) |
l prism.r: fix mdmonitor service error
Diffstat (limited to 'lass/1systems/prism')
-rw-r--r-- | lass/1systems/prism/config.nix | 10 | ||||
-rw-r--r-- | lass/1systems/prism/physical.nix | 6 |
2 files changed, 6 insertions, 10 deletions
diff --git a/lass/1systems/prism/config.nix b/lass/1systems/prism/config.nix index 356b8d182..45f9ae00e 100644 --- a/lass/1systems/prism/config.nix +++ b/lass/1systems/prism/config.nix @@ -123,16 +123,6 @@ with import <stockholm/lib>; <stockholm/lass/2configs/ciko.nix> <stockholm/lass/2configs/container-networking.nix> <stockholm/lass/2configs/jitsi.nix> - { # quasi bepasty.nix - imports = [ - <stockholm/lass/2configs/bepasty.nix> - ]; - krebs.bepasty.servers."paste.r".nginx.extraConfig = '' - if ( $server_addr = "${config.krebs.build.host.nets.internet.ip4.addr}" ) { - return 403; - } - ''; - } { services.tor = { enable = true; diff --git a/lass/1systems/prism/physical.nix b/lass/1systems/prism/physical.nix index 1a3bee850..26ecd1cda 100644 --- a/lass/1systems/prism/physical.nix +++ b/lass/1systems/prism/physical.nix @@ -65,6 +65,12 @@ fsType = "ext4"; }; + # silence mdmonitor.service failures + # https://github.com/NixOS/nixpkgs/issues/72394 + environment.etc."mdadm.conf".text = '' + MAILADDR root + ''; + nix.maxJobs = lib.mkDefault 8; powerManagement.cpuFreqGovernor = lib.mkDefault "powersave"; |