summary refs log tree commit diff
path: root/nixos/modules
diff options
context:
space:
mode:
authorChristopher A. Williamson <home@chrisaw.com>2020-06-22 17:25:48 +0100
committerChristopher A. Williamson <home@chrisaw.com>2020-07-07 23:15:57 +0100
commit6713ee8f4a181d59ba8d511e17dda91f26ae235d (patch)
tree6ad5b10cdf85ca35b6b9f4d0bf2598a50d301ed5 /nixos/modules
parent22a81aa5fc15b2d41b12f7160a71cd4a9f3c3fa1 (diff)
downloadnixpkgs-6713ee8f4a181d59ba8d511e17dda91f26ae235d.tar
nixpkgs-6713ee8f4a181d59ba8d511e17dda91f26ae235d.tar.gz
nixpkgs-6713ee8f4a181d59ba8d511e17dda91f26ae235d.tar.bz2
nixpkgs-6713ee8f4a181d59ba8d511e17dda91f26ae235d.tar.lz
nixpkgs-6713ee8f4a181d59ba8d511e17dda91f26ae235d.tar.xz
nixpkgs-6713ee8f4a181d59ba8d511e17dda91f26ae235d.tar.zst
nixpkgs-6713ee8f4a181d59ba8d511e17dda91f26ae235d.zip
nixos/onlykey: fix typo
Diffstat (limited to 'nixos/modules')
-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;
   };