refactor(emacs): Simpler architecture for msyds emacs

This commit is contained in:
2025-08-11 16:20:25 -06:00
parent aad37f62a3
commit ce288fdbd9
43 changed files with 1016 additions and 382 deletions

View File

@@ -18,18 +18,3 @@ in {
};
};
}
{ pkgs, ... }:
let
device = "/dev/disk/by-id/ata-APPLE_SSD_SM0512G_S29ANYAH526520";
subvol = name: {
type = "btrfs";
inherit device;
options = ["subvol=${name}"];
};
in {
fileSystems."/" = subvol "rootfs";
fileSystems."/nix" = subvol "nix";
fileSystems."/persist" = subvol "persist";
fileSystems."/persist/home" = subvol "persist/home";
}