attempt omnissa on arm

This commit is contained in:
2026-02-20 14:06:38 -06:00
parent 0d835df1aa
commit afccded50c
5 changed files with 201 additions and 9 deletions

View File

@@ -61,7 +61,7 @@
hardware = {
battery = {
enable = true;
battery = " /sys/class/power_supply/macsmc-battery/charge_control_end_threshold";
battery = "/sys/class/power_supply/macsmc-battery/charge_control_end_threshold";
};
};
network = {
@@ -130,7 +130,9 @@
(pkgs.OVMF.override {
secureBoot = true;
})
];
] ++ (with pkgs.${namespace}; [
omnissa
]);
networking.networkmanager.wifi.backend = "iwd";

View File

@@ -35,7 +35,7 @@
fileSystems."/home" = {
device = "/dev/mapper/cryptroot";
fsType = "btrfs";
options = [ "subvol=home" ];
options = [ "subvol=home" "compress=zstd" ];
};
boot.initrd.luks.devices."cryptroot".device =
@@ -44,31 +44,31 @@
fileSystems."/persist" = {
device = "/dev/mapper/cryptroot";
fsType = "btrfs";
options = [ "subvol=persist" ];
options = [ "subvol=persist" "compress=zstd" ];
};
fileSystems."/etc" = {
device = "/dev/mapper/cryptroot";
fsType = "btrfs";
options = [ "subvol=etc" ];
options = [ "subvol=etc" "compress=zstd" ];
};
fileSystems."/root" = {
device = "/dev/mapper/cryptroot";
fsType = "btrfs";
options = [ "subvol=root" ];
options = [ "subvol=root" "compress=zstd" ];
};
fileSystems."/nix" = {
device = "/dev/mapper/cryptroot";
fsType = "btrfs";
options = [ "subvol=nix" ];
options = [ "subvol=nix" "compress=zstd" ];
};
fileSystems."/var/log" = {
device = "/dev/mapper/cryptroot";
fsType = "btrfs";
options = [ "subvol=log" ];
options = [ "subvol=log" "compress=zstd" ];
};
swapDevices = [ ];