about summary refs log tree commit diff
path: root/README.md
diff options
context:
space:
mode:
authorVika <vika@fireburn.ru>2024-01-29 07:08:21 +0300
committerVika <vika@fireburn.ru>2024-01-29 07:08:21 +0300
commitd36014200549cf73a7f22c6f94fb15bec17823e8 (patch)
tree6e56f912219c5d20e2768b1f016f23fff22fe83e /README.md
parented51d48f7353a5ceefa798ded52d3af465d4d0ec (diff)
lint: no extra whitespace on line endings
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 85f0e70..2299f20 100644
--- a/README.md
+++ b/README.md
@@ -63,7 +63,7 @@ $ cargo check
 ## Deployment
 ### Using NixOS
 ```nix
-{ config, pkgs, lib, ...}: let 
+{ config, pkgs, lib, ...}: let
   # Included as an example. You should probably use `flake.nix` instead.
   # You will get version pinning and you will probably be happier.
   kittybox = (builtins.getFlake "git+https://git.sr.ht/~vikanezrimaya/kittybox?ref=main");
@@ -71,7 +71,7 @@ in {
   imports = [
     kittybox.nixosModules.default
   ];
-  
+
   services.kittybox.enable = true;
 }
 ```