initial commit

This commit is contained in:
Ifrahim Ansari 2026-02-15 11:10:32 -05:00
commit 6491e91ec5
37 changed files with 1116 additions and 0 deletions

52
iso/iso.nix Normal file
View file

@ -0,0 +1,52 @@
{
pkgs,
modulesPath,
lib,
config,
...
}:
{
imports = [
"${modulesPath}/installer/cd-dvd/installation-cd-minimal.nix"
];
users.users.root = {
initialPassword = "password";
};
nix.settings.experimental-features = [
"nix-command"
"flakes"
];
services.openssh.enable = true;
# supported filesystems
boot.supportedFilesystems = lib.mkForce [
"btrfs"
"reiserfs"
"vfat"
"f2fs"
"xfs"
"ntfs"
"cifs"
];
# use the latest Linux kernel
boot.kernelPackages = pkgs.linuxPackages_latest;
boot.initrd.availableKernelModules = [
"nvme"
"ahci"
"thunderbolt"
"xhci_pci"
"usbhid"
"usb_storage"
"sd_mod"
];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [
"kvm-amd"
"iwlwifi"
];
boot.extraModulePackages = [ ];
}