attempt omnissa on arm
This commit is contained in:
@@ -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";
|
||||
|
||||
|
||||
@@ -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 = [ ];
|
||||
|
||||
Reference in New Issue
Block a user