initial commit, with lots of old code that i may need again later

This commit is contained in:
Jeeves 2024-11-28 04:31:09 -07:00
commit 79b4f7454d
8 changed files with 294 additions and 0 deletions

38
flake.nix Normal file
View file

@ -0,0 +1,38 @@
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
};
outputs = { self, nixpkgs }: {
nixosConfigurations = {
"aeolia" = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
({ pkgs, ... }: { nixpkgs.overlays = [
(final: super: {
makeModulesClosure = x:
super.makeModulesClosure (x // { allowMissing = true; });
})
]; })
./aeolia-config.nix
];
};
};
usb.aeolia = nixpkgs.legacyPackages.x86_64-linux.stdenvNoCC.mkDerivation {
name = "nixos-ps4-usb-aeolia";
kernel = self.nixosConfigurations.aeolia.config.system.build.kernel;
initrd = self.nixosConfigurations.aeolia.config.system.build.initialRamdisk;
rootfs = self.nixosConfigurations.aeolia.config.system.build.rootFileSystem;
dontUnpack = true;
installPhase = ''
mkdir -p $out/boot $out/root
cp $kernel/bzImage $out/boot/bzImage
cp $initrd/initrd.gz $out/boot/initramfs.cpio.gz
cp $rootfs $out/root/rootfs.img
'';
};
};
}