diff options
Diffstat (limited to 'makefu/1systems')
-rw-r--r-- | makefu/1systems/gum/config.nix | 2 | ||||
-rw-r--r-- | makefu/1systems/wbob/config.nix | 2 | ||||
-rw-r--r-- | makefu/1systems/x/config.nix | 22 | ||||
-rw-r--r-- | makefu/1systems/x/x13/default.nix | 5 |
4 files changed, 27 insertions, 4 deletions
diff --git a/makefu/1systems/gum/config.nix b/makefu/1systems/gum/config.nix index 2a1d39c04..1cd569947 100644 --- a/makefu/1systems/gum/config.nix +++ b/makefu/1systems/gum/config.nix @@ -160,7 +160,7 @@ in { # <stockholm/makefu/2configs/deployment/systemdultras-rss.nix> <stockholm/makefu/2configs/shiori.nix> - <stockholm/makefu/2configs/workadventure> + # <stockholm/makefu/2configs/workadventure> <stockholm/makefu/2configs/bgt/download.binaergewitter.de.nix> <stockholm/makefu/2configs/bgt/hidden_service.nix> diff --git a/makefu/1systems/wbob/config.nix b/makefu/1systems/wbob/config.nix index f99e493bf..550afbeae 100644 --- a/makefu/1systems/wbob/config.nix +++ b/makefu/1systems/wbob/config.nix @@ -67,6 +67,8 @@ in { services.grafana.enable = true; services.grafana.addr = "0.0.0.0"; services.influxdb.enable = true; + systemd.services.influxdb.serviceConfig.LimitNOFILE = 8192; + services.influxdb.extraConfig = { meta.hostname = config.krebs.build.host.name; # meta.logging-enabled = true; diff --git a/makefu/1systems/x/config.nix b/makefu/1systems/x/config.nix index fee4145b9..dee6bd70e 100644 --- a/makefu/1systems/x/config.nix +++ b/makefu/1systems/x/config.nix @@ -26,6 +26,7 @@ <stockholm/makefu/2configs/hw/droidcam.nix> <stockholm/makefu/2configs/hw/smartcard.nix> <stockholm/makefu/2configs/hw/upower.nix> + #<stockholm/makefu/2configs/hw/ps4-compat.nix> # base <stockholm/makefu> @@ -100,6 +101,24 @@ # <stockholm/makefu/2configs/pyload.nix> # Testing + #{ + # services.nginx = { + # enable = true; + # recommendedProxySettings = true; + # virtualHosts.local = { + # default = true; + # locations."/".proxyPass= "http://localhost:4567"; + # }; + # }; + # services.gollum = { + # enable = true; + # extraConfig = '' + # Gollum::Hook.register(:post_commit, :hook_id) do |committer, sha1| + # File.open('/tmp/lol', 'w') { |file| file.write(self.to_s) } + # end + # ''; + # }; + #} # <stockholm/makefu/2configs/deployment/gitlab.nix> # <stockholm/makefu/2configs/deployment/docker/etherpad.nix> # <stockholm/makefu/2configs/deployment/wiki-irc-bot> @@ -158,7 +177,8 @@ # temporary # { services.redis.enable = true; } - { services.mongodb.enable = true; } + # { services.mongodb.enable = true; } + # <stockholm/makefu/2configs/deployment/nixos.wiki> # <stockholm/makefu/2configs/home/photoprism.nix> # <stockholm/makefu/2configs/dcpp/airdcpp.nix> # <stockholm/makefu/2configs/nginx/rompr.nix> diff --git a/makefu/1systems/x/x13/default.nix b/makefu/1systems/x/x13/default.nix index ea557bbef..9a407a575 100644 --- a/makefu/1systems/x/x13/default.nix +++ b/makefu/1systems/x/x13/default.nix @@ -8,7 +8,7 @@ <nixos-hardware/lenovo/thinkpad/l14/amd> # close enough # <stockholm/makefu/2configs/hw/tpm.nix> <stockholm/makefu/2configs/hw/ssd.nix> - # <stockholm/makefu/2configs/hw/xmm7360.nix> + <stockholm/makefu/2configs/hw/xmm7360.nix> ]; boot.zfs.requestEncryptionCredentials = true; networking.hostId = "f8b8e0a2"; @@ -22,7 +22,8 @@ ]; hardware.opengl.extraPackages = [ pkgs.amdvlk pkgs.rocm-opencl-icd ]; # is required for amd graphics support ( xorg wont boot otherwise ) - boot.kernelPackages = pkgs.linuxPackages_latest; + #boot.kernelPackages = pkgs.linuxPackages_latest; + boot.kernelPackages = lib.mkForce pkgs.linuxPackages; environment.variables.VK_ICD_FILENAMES = "/run/opengl-driver/share/vulkan/icd.d/amd_icd64.json"; |