my over complex system configurations dotfiles.isabelroses.com/
nixos nix flake dotfiles linux
9
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 17 lines 272 B view raw
1{ lib, ... }: 2let 3 inherit (lib) mkForce mkAfter; 4in 5{ 6 boot = { 7 kernelParams = mkAfter [ 8 "noquiet" 9 "toram" 10 ]; 11 12 # we don't need to have any raid tools in our system 13 swraid.enable = mkForce false; 14 15 supportedFilesystems.zfs = false; 16 }; 17}