diff options
author | makefu <github@syntax-fehler.de> | 2017-07-30 19:05:30 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2017-07-30 19:05:30 +0200 |
commit | f840332f365e23fc3c0cfcffa65ed7de73eaec64 (patch) | |
tree | f2efcfe493c206fec1e5370898ec471c393f898c /makefu/1systems/pnp | |
parent | 17497235e84985f9b2ec4acda47f15a9fe68453e (diff) |
ma pnp: filesystems.options is a list
Diffstat (limited to 'makefu/1systems/pnp')
-rw-r--r-- | makefu/1systems/pnp/config.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/makefu/1systems/pnp/config.nix b/makefu/1systems/pnp/config.nix index de920cc3f..5fbaaabc7 100644 --- a/makefu/1systems/pnp/config.nix +++ b/makefu/1systems/pnp/config.nix @@ -26,7 +26,7 @@ "${builtins.toString <secrets>}" = { device = "secrets"; fsType = "9p"; - options = "trans=virtio,version=9p2000.L,cache=loose"; + options = [ "trans=virtio" "version=9p2000.L" "cache=loose" ]; neededForBoot = true; }; }; |