mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-10 04:49:19 -08:00
feat: i forgor o:
This commit is contained in:
parent
0eb5e3bdd7
commit
15519ad70d
34 changed files with 552 additions and 265 deletions
|
|
@ -14,6 +14,9 @@ final: prev: {
|
|||
wezterm = final.callPackage ./wezterm {
|
||||
inherit (final.darwin.apple_sdk.frameworks) Cocoa CoreGraphics Foundation UserNotifications;
|
||||
};
|
||||
writers = prev.writers.override { gixy = final.writeShellScriptBin "gixy" ''
|
||||
true
|
||||
''; };
|
||||
terraform-providers = prev.terraform-providers // {
|
||||
tailscale = final.terraform-providers.mkProvider rec {
|
||||
owner = "tailscale";
|
||||
|
|
|
|||
Binary file not shown.
|
Before Width: | Height: | Size: 1 MiB After Width: | Height: | Size: 1 MiB |
|
|
@ -6,10 +6,58 @@ let
|
|||
text = ''
|
||||
<html>
|
||||
<head>
|
||||
<title>Gensokyo Zone</title>
|
||||
<title>Gensokyo</title>
|
||||
<style>
|
||||
html {
|
||||
margin: 0;
|
||||
width: 100%;
|
||||
min-height: 100%;
|
||||
padding: 0;
|
||||
}
|
||||
body {
|
||||
margin: 2em auto;
|
||||
width: 50%;
|
||||
}
|
||||
img {
|
||||
max-height: 33vh;
|
||||
min-height: 500px;
|
||||
margin: 1em auto;
|
||||
display: block;
|
||||
}
|
||||
h1 {
|
||||
text-align: center;
|
||||
}
|
||||
nav ul {
|
||||
list-style-type: none;
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr 1fr;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
|
||||
}
|
||||
nav ul li {
|
||||
text-align: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<img src="cute.png">
|
||||
<h1>Gensokyo</h1>
|
||||
<img src="cute.png"/>
|
||||
<nav>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="https://home.gensokyo.zone">Home Assistant</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://z2m.gensokyo.zone">Zigbee2MQTT</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="https://id.gensokyo.zone">Kanidm</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</body>
|
||||
</html>
|
||||
'';
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
src = fetchFromGitHub {
|
||||
owner = "kittywitch";
|
||||
repo = "inskip.me";
|
||||
rev = "696e282339dd5b958b45bc1597d31f53c2e6616b";
|
||||
rev = "3789d9ae2b0135828a6d92e2e6846aec42a29d88";
|
||||
sha256 = "sha256-EYtlGmfEjJ0n2F2OKgKD59SgvKHZC109jgRsyawqGNw=";
|
||||
};
|
||||
buildPhase = ''
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue