[root@nixos:/etc/nix]# sudo chmod 777 /etc/nix/nix.conf
chmod: changing permissions of '/etc/nix/nix.conf': Read-only file system
それを変更するのがファイルシステム/Linuxカーネルユーティリティだったことを覚えていますが、名前が何であるかよくわかりません。
答え1
ファイルはNixによって管理されるため、ストレージパスにあり、読み取り専用です。
readlink -f /etc/nix/nix.conf
/nix/store/9cidrvc5n3fjf9zplxrwiyh0g9nq07bb-nix.conf
代わりにこれを変更するには、次の設定を行う必要があります。nix.extraOptions
configuration.nix
このファイルを変更するには
https://github.com/NixOS/nix/pull/3111
Nix設定をに設定することもできますが、~/.config/nix/nix.conf
詳細についてはこちらをご覧ください。https://nixos.org/manual/nix/unstable/command-ref/conf-file.html