diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 4 |
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; } ``` |