mirror of
https://github.com/blahai/nyx.git
synced 2025-06-10 16:13:00 -04:00
too much shit idek anymore
This commit is contained in:
parent
14843ef945
commit
bc82345beb
63 changed files with 1759 additions and 346 deletions
25
modules/iso/boot.nix
Normal file
25
modules/iso/boot.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
{lib, ...}: let
|
||||
inherit (lib.modules) mkForce mkAfter;
|
||||
in {
|
||||
boot = {
|
||||
kernelParams = mkAfter [
|
||||
"noquiet"
|
||||
"toram"
|
||||
];
|
||||
|
||||
# have no need for systemd-boot
|
||||
loader.systemd-boot.enable = mkForce false;
|
||||
# we don't need to have any raid tools in our system
|
||||
swraid.enable = mkForce false;
|
||||
|
||||
# https://github.com/NixOS/nixpkgs/issues/58959
|
||||
supportedFilesystems = mkForce [
|
||||
"btrfs"
|
||||
"ext4"
|
||||
"zfs"
|
||||
"vfat"
|
||||
"f2fs"
|
||||
"xfs"
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue