aboutsummaryrefslogtreecommitdiffstats
path: root/hosts
diff options
context:
space:
mode:
authorMark Nipper <nipsy@bitgnome.net>2024-11-10 19:37:15 -0800
committerMark Nipper <nipsy@bitgnome.net>2024-11-10 19:37:15 -0800
commit5c48140eb165cca3729b5cd2e151d13b1043edca (patch)
tree2ce02cb48cf863ad7b8ee3c35ff3d8cecef8060e /hosts
parentcc651f669b6f45e4e319b08983f044696f063909 (diff)
downloadnix-5c48140eb165cca3729b5cd2e151d13b1043edca.tar
nix-5c48140eb165cca3729b5cd2e151d13b1043edca.tar.gz
nix-5c48140eb165cca3729b5cd2e151d13b1043edca.tar.bz2
nix-5c48140eb165cca3729b5cd2e151d13b1043edca.tar.lz
nix-5c48140eb165cca3729b5cd2e151d13b1043edca.tar.xz
nix-5c48140eb165cca3729b5cd2e151d13b1043edca.tar.zst
nix-5c48140eb165cca3729b5cd2e151d13b1043edca.zip
Fix typo
Diffstat (limited to 'hosts')
-rw-r--r--hosts/arrakis/services.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/hosts/arrakis/services.nix b/hosts/arrakis/services.nix
index 6aec871..94db152 100644
--- a/hosts/arrakis/services.nix
+++ b/hosts/arrakis/services.nix
@@ -1,4 +1,4 @@
-{ config, pkgs, ... }: {
+{ config, lib, pkgs, ... }: {
environment.etc."gitconfig".text = ''
[safe]
@@ -249,6 +249,6 @@
};
- systemd.services.nginx.serviceConfig.PrivateMounts = mkForce false;
+ systemd.services.nginx.serviceConfig.PrivateMounts = lib.mkForce false;
}