flake: reformat with nixfmt
This commit is contained in:
parent
a79e641851
commit
eaf4f56ac0
117 changed files with 2667 additions and 1592 deletions
|
@ -1,4 +1,10 @@
|
|||
{ inputs, config, lib, pkgs, ... }:
|
||||
{
|
||||
inputs,
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
with lib;
|
||||
{
|
||||
imports = [
|
||||
|
@ -13,8 +19,7 @@ with lib;
|
|||
|
||||
nixpkgs.overlays = [
|
||||
(final: super: {
|
||||
makeModulesClosure = x:
|
||||
super.makeModulesClosure (x // { allowMissing = true; });
|
||||
makeModulesClosure = x: super.makeModulesClosure (x // { allowMissing = true; });
|
||||
})
|
||||
];
|
||||
|
||||
|
@ -31,7 +36,12 @@ with lib;
|
|||
kernelPackages = mkForce pkgs.linuxPackages_rpi4;
|
||||
|
||||
# Removes ZFS >:(
|
||||
supportedFilesystems = mkForce [ "btrfs" "ntfs" "vfat" "ext4" ];
|
||||
supportedFilesystems = mkForce [
|
||||
"btrfs"
|
||||
"ntfs"
|
||||
"vfat"
|
||||
"ext4"
|
||||
];
|
||||
|
||||
tmp.useTmpfs = true;
|
||||
# kernelParams = [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue