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

11
aeolia-config.nix Normal file
View file

@ -0,0 +1,11 @@
{ pkgs, modulesPath, fetchzip, ... }: {
imports = [
(modulesPath + "/profiles/minimal.nix")
./base.nix
];
# boot.kernelPackages = pkgs.recurseIntoAttrs (pkgs.linuxPackagesFor (pkgs.callPackage ./kernel-aeolia.nix {}));
boot.kernelPackages = pkgs.recurseIntoAttrs (pkgs.linuxPackagesFor (pkgs.callPackage ./kernel-aeolia-5.3.nix {}));
system.stateVersion = "25.05";
}