swith to dbus broker

higher compression
This commit is contained in:
陈浩南 2023-06-19 16:56:49 +08:00
parent f1bb29f7d9
commit aa1e709e49
2 changed files with 9 additions and 3 deletions

View File

@ -15,13 +15,13 @@
{ {
device = "/dev/mapper/root"; device = "/dev/mapper/root";
fsType = "btrfs"; fsType = "btrfs";
options = [ "subvol=nix" "compress-force=zstd:3" ]; options = [ "subvol=nix" "compress-force=zstd:15" ];
}; };
"/boot" = "/boot" =
{ {
device = "/dev/disk/by-uuid/02e426ec-cfa2-4a18-b3a5-57ef04d66614"; device = "/dev/disk/by-uuid/02e426ec-cfa2-4a18-b3a5-57ef04d66614";
fsType = "btrfs"; fsType = "btrfs";
options = [ "compress-force=zstd:3" ]; options = [ "compress-force=zstd:15" ];
}; };
"/boot/efi" = "/boot/efi" =
{ {

View File

@ -1 +1,7 @@
{ config.nix.settings.system-features = [ "gccarch-alderlake" ]; } {
config =
{
nix.settings.system-features = [ "gccarch-alderlake" ];
services.dbus.implementation = "broker";
};
}