Compare commits

..

No commits in common. "4e68c3ccf7012d2ef5f4c98cbe7cd0e21d62f433" and "4358f717d079bbf67fbee43207149d3e21ac288d" have entirely different histories.

3 changed files with 0 additions and 17 deletions

View file

@ -5,12 +5,10 @@
razmo = {
spec = "/mnt/razmo";
hashTableSizeMB = 512; # Recommended for 1 TiB, ×2 for compression, x2 for time
extraOptions = [ "--loadavg-target" "10" ]; # This one is tame
};
rapido = {
spec = "/mnt/rapido";
hashTableSizeMB = 128; # 4 times smaller disk, 4 times smaller hashtable?
extraOptions = [ "--loadavg-target" "7.5" ]; # This one can slow things down
};
};
};

View file

@ -10,6 +10,5 @@
./disko.nix
./features.nix
./hardware.nix
./webcam
];
}

View file

@ -1,14 +0,0 @@
{ pkgs, lib, config, ... }:
{
config = {
# TODO This should install cameractrls, but it seems like it's not easy to install.
# In the meantime, we install Flatpak and do:
# flatpak run hu.irl.cameractrls
services.flatpak.enable = true;
xdg.portal = {
config.common.default = "*";
enable = true;
extraPortals = [ pkgs.xdg-desktop-portal-gtk ];
};
};
}