mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
Koishi: move to dualboot, Goliath: deprecate, Flake: clean up 5
flake-utils
This commit is contained in:
parent
88e2f45b0b
commit
d9c859e261
35 changed files with 446 additions and 1119 deletions
22
overlays/local/gensokyoZone/default.nix
Normal file
22
overlays/local/gensokyoZone/default.nix
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
{ writeTextFile, linkFarm }:
|
||||
|
||||
let
|
||||
mewp = writeTextFile {
|
||||
name = "index.html";
|
||||
text = ''
|
||||
<html>
|
||||
<head>
|
||||
<title>Gensokyo Zone</title>
|
||||
</head>
|
||||
<body>
|
||||
<img src="cute.png">
|
||||
</body>
|
||||
</html>
|
||||
'';
|
||||
};
|
||||
mewy = "${./cute.png}";
|
||||
in
|
||||
linkFarm "index" [
|
||||
{ name = "index.html"; path = mewp; }
|
||||
{ name = "cute.png"; path = mewy; }
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue