diff options
author | Marc Coquand <marc@mccd.space> | 2024-01-20 20:34:28 -0600 |
---|---|---|
committer | Marc Coquand <marc@mccd.space> | 2024-01-20 20:34:28 -0600 |
commit | f0cd2cab72d2b88946da1e6e7a59b774d0e3104b (patch) | |
tree | 2b64f0235f5d6add67cef9a15965a38cfd1dfa01 | |
parent | f1236f9f7009acfbefee3f6a405cdf17f7486479 (diff) | |
download | nixos-f0cd2cab72d2b88946da1e6e7a59b774d0e3104b.tar.gz nixos-f0cd2cab72d2b88946da1e6e7a59b774d0e3104b.tar.bz2 nixos-f0cd2cab72d2b88946da1e6e7a59b774d0e3104b.zip |
Fix error
-rw-r--r-- | configuration.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configuration.nix b/configuration.nix index 4b2d680..941939e 100644 --- a/configuration.nix +++ b/configuration.nix @@ -3,7 +3,7 @@ ./hardware-configuration.nix ./networking.nix # generated at runtime by nixos-infect ]; - nix.settings.experimental-features = [ "nix-command" "flakes" ] + nix.settings.experimental-features = [ "nix-command" "flakes" ]; systemd.services.ann = { enable = true; description = "Ann"; |