hyprgrass

This commit is contained in:
Lilith 2025-03-17 21:04:49 +01:00
parent a22cc6450e
commit 1eb67ac0de
Signed by: lilith
GPG key ID: 8712A0F317C37175
7 changed files with 57 additions and 32 deletions

View file

@ -1,4 +1,5 @@
{...}: {
{ ... }:
{
nix = {
gc = {
automatic = true;
@ -8,8 +9,24 @@
settings = {
keep-outputs = true;
auto-optimise-store = true;
experimental-features = ["nix-command" "flakes"];
trusted-users = ["root" "@wheel"];
experimental-features = [
"nix-command"
"flakes"
];
trusted-users = [
"root"
"@wheel"
];
builders-use-substitutes = true;
};
distributedBuilds = true;
buildMachines = [
{
hostName = "lilith-server-builder";
system = "x86_64-linux";
}
];
};
}