iron: init

add installer for macbook-pro-2009

repurpose tungsten disko config for iron

installer-macbook-pro-2009: enable b43 driver

README: document how to wipe filesystem

iron: generate hardware-configuration

iron: discard unused modules

iron: include macbook specific modules

iron: remove custom fs configurations
This commit is contained in:
Primrose 2025-10-23 10:46:05 +08:00
parent 1e63c7bb53
commit 99b1dda7ba
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA
19 changed files with 761 additions and 1 deletions

View file

@ -0,0 +1,23 @@
{pkgs, ...}: {
services.btrfs.autoScrub = {
enable = true;
fileSystems = [
"/"
"/home"
"/nix"
];
};
systemd.tmpfiles.rules = [
# tmux-sessionizer directories
"d /home/leana/r 0700 leana leana - -"
"d /home/leana/pg 0700 leana leana 4w -"
"d /home/leana/wt 0700 leana leana - -"
];
environment.systemPackages = [
pkgs.lsof
pkgs.smartmontools
pkgs.compsize
];
}