12 lines
178 B
Nix
12 lines
178 B
Nix
{pkgs, ...}: {
|
|
services = {
|
|
garage = {
|
|
enable = true;
|
|
package = pkgs.garage;
|
|
logLevel = "error";
|
|
settings = {
|
|
# nope
|
|
};
|
|
};
|
|
};
|
|
}
|