summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorLassulus <github@lassul.us>2020-08-21 18:27:46 +0200
committerGitHub <noreply@github.com>2020-08-21 18:27:46 +0200
commit6f875099573d66d5a82e3a48f4a2f3a22064eadf (patch)
tree543c63a502af15fdd58f19bc73c69a5ac40e3e18 /nixos
parentde257138863bab94a5c0c1d51534bc6322b1cd48 (diff)
parent6713ee8f4a181d59ba8d511e17dda91f26ae235d (diff)
downloadnixpkgs-6f875099573d66d5a82e3a48f4a2f3a22064eadf.tar
nixpkgs-6f875099573d66d5a82e3a48f4a2f3a22064eadf.tar.gz
nixpkgs-6f875099573d66d5a82e3a48f4a2f3a22064eadf.tar.bz2
nixpkgs-6f875099573d66d5a82e3a48f4a2f3a22064eadf.tar.lz
nixpkgs-6f875099573d66d5a82e3a48f4a2f3a22064eadf.tar.xz
nixpkgs-6f875099573d66d5a82e3a48f4a2f3a22064eadf.tar.zst
nixpkgs-6f875099573d66d5a82e3a48f4a2f3a22064eadf.zip
Merge pull request #91296 from cawilliamson/master
nixos/onlykey: fix typo
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/hardware/onlykey.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/hardware/onlykey.nix b/nixos/modules/hardware/onlykey.nix
index b6820fe0191..07358c8a878 100644
--- a/nixos/modules/hardware/onlykey.nix
+++ b/nixos/modules/hardware/onlykey.nix
@@ -26,7 +26,7 @@ with lib;
   ####### implementation
 
   config = mkIf config.hardware.onlykey.enable {
-    services.udev.extraRules = builtin.readFile ./onlykey.udev;
+    services.udev.extraRules = builtins.readFile ./onlykey.udev;
   };