aboutsummaryrefslogtreecommitdiffhomepage
path: root/hst/template.go
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2025-08-02 00:34:52 +0900
committerOphestra <cat@gensokyo.uk>2025-08-02 00:34:52 +0900
commitb32b1975a89d60beab75dfca723925131a06065b (patch)
tree75e4902d1359083a4b701c4462f8011c8179b40b /hst/template.go
parent2b1eaa62f1ef94de8b22e2433a6070d8e7bbeb99 (diff)
hst/container: remove cover
This was never useful, and is now completely replaced by regular FilesystemConfig being able to mount tmpfs. Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'hst/template.go')
-rw-r--r--hst/template.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/hst/template.go b/hst/template.go
index 391e58e2..5758462e 100644
--- a/hst/template.go
+++ b/hst/template.go
@@ -78,6 +78,7 @@ func Template() *Config {
"GOOGLE_DEFAULT_CLIENT_SECRET": "OTJgUOQcT7lO7GsGZq2G4IlT",
},
Filesystem: []*FilesystemConfig{
+ {Dst: "/tmp", Src: SourceTmpfs, Write: true},
{Src: "/nix/store"},
{Src: "/run/current-system"},
{Src: "/run/opengl-driver"},
@@ -91,7 +92,6 @@ func Template() *Config {
RootFlags: container.BindWritable,
Etc: "/etc",
AutoEtc: true,
- Cover: []string{"/var/run/nscd"},
},
}
}