add beesd for dataroot; add file program to home config
This commit is contained in:
parent
9e0ce8df9f
commit
4b2a18cb48
|
@ -130,7 +130,7 @@
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
rclone sshfs fuse
|
rclone sshfs fuse
|
||||||
jq python3Full killall
|
file jq python3Full killall
|
||||||
appimage-run comma nvfetcher
|
appimage-run comma nvfetcher
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -277,11 +277,17 @@ in {
|
||||||
# dedupe
|
# dedupe
|
||||||
|
|
||||||
services.beesd = {
|
services.beesd = {
|
||||||
|
# i have a lot of ram :tonystark:
|
||||||
filesystems.cryptroot = {
|
filesystems.cryptroot = {
|
||||||
spec = "UUID=${cryptrootUuid}";
|
spec = "UUID=${cryptrootUuid}";
|
||||||
hashTableSizeMB = 128;
|
hashTableSizeMB = 128;
|
||||||
extraOptions = [ "--loadavg-target" "8.0" ];
|
extraOptions = [ "--loadavg-target" "8.0" ];
|
||||||
};
|
};
|
||||||
|
filesystems.dataroot = {
|
||||||
|
spec = "UUID=${datarootUuid}";
|
||||||
|
hashTableSizeMB = 256;
|
||||||
|
extraOptions = [ "--loadavg-target" "8.0" ];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
# System76 scheduler (not actually a scheduler, just a renice daemon) for improved responsiveness
|
# System76 scheduler (not actually a scheduler, just a renice daemon) for improved responsiveness
|
||||||
|
|
Loading…
Reference in a new issue