summary refs log tree commit diff
path: root/nixos/modules/programs
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2022-12-16 00:02:17 +0000
committerGitHub <noreply@github.com>2022-12-16 00:02:17 +0000
commitb9ac6ee4d9d69a9163a2bbaf08a5ff053bec13e4 (patch)
tree3b2ac0cc3172c03aab1a4b0710decbb194da420b /nixos/modules/programs
parentc2a66b3c22a6188e20175ad564e79b4095739753 (diff)
parentbf012373ca54516c086bed13fad4521766547ae8 (diff)
downloadnixpkgs-b9ac6ee4d9d69a9163a2bbaf08a5ff053bec13e4.tar
nixpkgs-b9ac6ee4d9d69a9163a2bbaf08a5ff053bec13e4.tar.gz
nixpkgs-b9ac6ee4d9d69a9163a2bbaf08a5ff053bec13e4.tar.bz2
nixpkgs-b9ac6ee4d9d69a9163a2bbaf08a5ff053bec13e4.tar.lz
nixpkgs-b9ac6ee4d9d69a9163a2bbaf08a5ff053bec13e4.tar.xz
nixpkgs-b9ac6ee4d9d69a9163a2bbaf08a5ff053bec13e4.tar.zst
nixpkgs-b9ac6ee4d9d69a9163a2bbaf08a5ff053bec13e4.zip
Merge master into staging-next
Diffstat (limited to 'nixos/modules/programs')
-rw-r--r--nixos/modules/programs/xfs_quota.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/programs/xfs_quota.nix b/nixos/modules/programs/xfs_quota.nix
index a1e9ff941c6..0fc2958b3f3 100644
--- a/nixos/modules/programs/xfs_quota.nix
+++ b/nixos/modules/programs/xfs_quota.nix
@@ -94,7 +94,7 @@ in
         '';
 
         wantedBy = [ "multi-user.target" ];
-        after = [ ((replaceChars [ "/" ] [ "-" ] opts.fileSystem) + ".mount") ];
+        after = [ ((replaceStrings [ "/" ] [ "-" ] opts.fileSystem) + ".mount") ];
 
         restartTriggers = [ config.environment.etc.projects.source ];