nix/error: experimental Nix feature 'nix-command' is disabled; add '--extra-experimental-features nix-command' to enable it.md
... ...
@@ -0,0 +1,19 @@
1
+## エラー内容
2
+
3
+```bash
4
+$ nix flake
5
+error: experimental Nix feature 'nix-command' is disabled; add '--extra-experimental-features nix-command' to enable it
6
+```
7
+
8
+## 解決方法
9
+
10
+`~/.config/nix`に以下を書き込む。
11
+
12
+```
13
+experimental-features = nix-command flakes
14
+```
15
+
16
+
17
+## 参考
18
+
19
+[Nixを使って共有できる開発環境を作ろう | 学生たちの技術ブログ](https://students-tech.blog/post/nix-develop)
... ...
\ No newline at end of file