summary refs log tree commit diff
path: root/nixos/modules/services/misc/fstrim.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/modules/services/misc/fstrim.nix')
-rw-r--r--nixos/modules/services/misc/fstrim.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/services/misc/fstrim.nix b/nixos/modules/services/misc/fstrim.nix
index b8841a7fe74..a9fc04b46f0 100644
--- a/nixos/modules/services/misc/fstrim.nix
+++ b/nixos/modules/services/misc/fstrim.nix
@@ -31,7 +31,7 @@ in {
 
   config = mkIf cfg.enable {
 
-    systemd.packages = [ pkgs.utillinux ];
+    systemd.packages = [ pkgs.util-linux ];
 
     systemd.timers.fstrim = {
       timerConfig = {
@@ -42,5 +42,5 @@ in {
 
   };
 
-  meta.maintainers = with maintainers; [ gnidorah ];
+  meta.maintainers = with maintainers; [ ];
 }