3 files changed, 5 insertions, 2 deletions
diff --git a/flake.nix b/flake.nix
index d8f89d9..56e7a65 100755
--- a/flake.nix
+++ b/flake.nix
@@ -5,6 +5,7 @@
extra-substituters = [
# private
"http://nix-bincache.rory-desktop.local"
+ "http://nix-bincache.rory-laptop.local"
# public
"https://attic.computer.surgery/grapevine"
"https://hyprland.cachix.org"
@@ -15,6 +16,7 @@
"grapevine:nYiZ0Qz9nT7Y7kNC/2NdoS3+J9gwTyWxOvlwZnFgceA="
"hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc="
"nix-bincache.rory.gay:663PIW8xxgIImxLcsokODWI2PHFWXvzJEfjX6TaIjxQ="
+ "nix-bincache.rory-laptop.local:IbXbNC8ok5YYj9HKYU/5GCec5HE/aixgW/+3sRHP2nE="
];
};
diff --git a/host/Rory-laptop/configuration.nix b/host/Rory-laptop/configuration.nix
index ef678f8..0fa9bc6 100644
--- a/host/Rory-laptop/configuration.nix
+++ b/host/Rory-laptop/configuration.nix
@@ -26,6 +26,7 @@ args@{
#./optional/hardware-specific/nvidia.nix
#./optional/hardware-specific/intel.nix
./optional/gui/wayland.nix
+ ./services/nginx.nix
];
boot = {
@@ -332,7 +333,7 @@ args@{
programs.virt-manager.enable = true;
monitoring = {
- monitorAll = true;
+ monitorAll = false;
localPrometheus = true;
exposePrometheus = true;
localGrafana = true;
diff --git a/host/Rory-laptop/services/nginx.nix b/host/Rory-laptop/services/nginx.nix
index 5735b9d..720b0a8 100644
--- a/host/Rory-laptop/services/nginx.nix
+++ b/host/Rory-laptop/services/nginx.nix
@@ -31,7 +31,7 @@
virtualHosts = {
"discord.localhost" = import ./nginx/discord.localhost.nix { inherit pkgs; };
"hse.localhost" = import ./nginx/hse.localhost.nix { inherit pkgs; };
- "nix-bincache.rory-desktop.local" = import ./nginx/nix-bincache.nix { inherit config; };
+ "nix-bincache.rory-laptop.local" = import ./nginx/nix-bincache.nix { inherit config; };
};
};
};
|