init commit

This commit is contained in:
notohh 2023-10-04 21:25:51 -04:00
parent 3a73c5923b
commit 88337022f8
Signed by: notohh
GPG key ID: BD47506D475EE86D
10 changed files with 111 additions and 0 deletions

1
.envrc Normal file
View file

@ -0,0 +1 @@
use flake

3
.gitmodules vendored Normal file
View file

@ -0,0 +1,3 @@
[submodule "themes/gokarna"]
path = themes/gokarna
url = https://github.com/526avijitgupta/gokarna.git

0
.hugo_build.lock Normal file
View file

5
archetypes/default.md Normal file
View file

@ -0,0 +1,5 @@
+++
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
date = {{ .Date }}
draft = true
+++

27
flake.lock Normal file
View file

@ -0,0 +1,27 @@
{
"nodes": {
"nixpkgs": {
"locked": {
"lastModified": 1696193975,
"narHash": "sha256-mnQjUcYgp9Guu3RNVAB2Srr1TqKcPpRXmJf4LJk6KRY=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "fdd898f8f79e8d2f99ed2ab6b3751811ef683242",
"type": "github"
},
"original": {
"owner": "nixos",
"ref": "nixos-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"root": {
"inputs": {
"nixpkgs": "nixpkgs"
}
}
},
"root": "root",
"version": 7
}

29
flake.nix Normal file
View file

@ -0,0 +1,29 @@
{
description = "notohh.dev flake";
inputs = {
nixpkgs = {
url = "github:nixos/nixpkgs/nixos-unstable";
};
};
outputs = {
self,
nixpkgs,
...
}: let
system = "x86_64-linux";
pkgs = import nixpkgs {
inherit system;
};
in {
devShells.${system}.default = pkgs.mkShell {
name = "notohh.dev";
packages = with pkgs; [
nil
git
alejandra
hugo
];
};
};
}

41
hugo.toml Normal file
View file

@ -0,0 +1,41 @@
baseURL = "https://notohh.dev/"
defaultContentLanguage = "en"
languageCode = "en"
title = "notohh"
theme = "gokarna"
enableRobotsTXT = true
[menu]
[[menu.main]]
identifier = "status"
name = "status"
url = "https://status.flake.sh/status/kumo"
pre = ""
weight = 1
[[menu.main]]
identifier = "about"
name = "about"
url = "/about/"
weight = 2
[[menu.main]]
identifier = "projects"
name = "projects"
url = "/projects/"
weight = 3
[params]
avatarURL = "/images/pfp.jpg"
avatarSize = "size-m"
accentColor = "#08F"
socialIcons = [
{name = "github", url = "https://github.com/"},
{name = "twitter", url = "https://twitter.com/notohhh"},
{name = "twitch", url = "https://www.twitch.tv/notohh"},
{name = "discord", url = "https://discord.com/users/155965294429470720"}
]
pygmentsStyle = "catppuccin-mocha"

4
static/icons/last-fm.svg Normal file
View file

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
<svg fill="#000000" width="800px" height="800px" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg">
<path d="M14.131 22.948l-1.172-3.193c0 0-1.912 2.131-4.771 2.131-2.537 0-4.333-2.203-4.333-5.729 0-4.511 2.276-6.125 4.515-6.125 3.224 0 4.245 2.089 5.125 4.772l1.161 3.667c1.161 3.561 3.365 6.421 9.713 6.421 4.548 0 7.631-1.391 7.631-5.068 0-2.968-1.697-4.511-4.844-5.244l-2.344-0.511c-1.624-0.371-2.104-1.032-2.104-2.131 0-1.249 0.985-1.984 2.604-1.984 1.767 0 2.704 0.661 2.865 2.24l3.661-0.444c-0.297-3.301-2.584-4.656-6.323-4.656-3.308 0-6.532 1.251-6.532 5.245 0 2.5 1.204 4.077 4.245 4.807l2.484 0.589c1.865 0.443 2.484 1.224 2.484 2.287 0 1.359-1.323 1.921-3.828 1.921-3.703 0-5.244-1.943-6.124-4.625l-1.204-3.667c-1.541-4.765-4.005-6.531-8.891-6.531-5.287-0.016-8.151 3.385-8.151 9.192 0 5.573 2.864 8.595 8.005 8.595 4.14 0 6.125-1.943 6.125-1.943z"/>
</svg>

After

Width:  |  Height:  |  Size: 994 B

BIN
static/images/pfp.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 88 KiB

1
themes/gokarna Submodule

@ -0,0 +1 @@
Subproject commit 9d9e7521f1ba1273a547603ceb971c2847389f77