feat(system): add distcc server to every machine

This commit is contained in:
xezo360hye 2024-09-09 01:35:53 +03:00
parent 3975280145
commit 649c734b79
5 changed files with 14 additions and 0 deletions

View File

@ -50,6 +50,7 @@
in [ in [
texlive.combined.scheme-full texlive.combined.scheme-full
telegram-desktop telegram-desktop
libreoffice-qt6
libqalculate libqalculate
arduino-cli arduino-cli

View File

@ -84,6 +84,14 @@ in
}; };
# Distcc
services.distccd = {
enable = true;
allowedClients = [ "192.168.0.0/24" ];
stats.enable = true;
};
# Programs # Programs
programs = { programs = {
git = { git = {

View File

@ -1,4 +1,6 @@
{ {
services.distccd.maxJobs = 4;
hardware.bluetooth = { hardware.bluetooth = {
enable = true; enable = true;
settings.General.Enable = "Source,Sink,Media,Socket"; settings.General.Enable = "Source,Sink,Media,Socket";

View File

@ -1,4 +1,6 @@
{ {
services.distccd.maxJobs = 4;
boot.loader = { boot.loader = {
efi = { efi = {
canTouchEfiVariables = true; canTouchEfiVariables = true;

View File

@ -1,4 +1,5 @@
{ {
services.distccd.maxJobs = 8;
console.keyMap = "no"; console.keyMap = "no";
services = { services = {