1
1

Add emanotes flake part
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 5s
Gitea Actions Demo / build-site (push) Successful in 4s

This commit is contained in:
2026-01-04 01:46:24 -05:00
parent 203fad17d1
commit fb6d498ad5
6 changed files with 239 additions and 8 deletions

View File

@@ -5,6 +5,9 @@
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.11";
flake-parts.url = "github:hercules-ci/flake-parts";
emanote.url = "github:srid/emanote";
emanote.inputs.nixpkgs.follows = "nixpkgs";
emanote.inputs.flake-parts.follows = "flake-parts";
git-hooks-nix.url = "github:cachix/git-hooks.nix";
git-hooks-nix.inputs.nixpkgs.follows = "nixpkgs";
treefmt-nix.url = "github:numtide/treefmt-nix";
@@ -18,6 +21,7 @@
# 1. Add foo to inputs
# 2. Add foo as a parameter to the outputs function
# 3. Add here: foo.flakeModule
inputs.emanote.flakeModule
inputs.git-hooks-nix.flakeModule
inputs.treefmt-nix.flakeModule
];
@@ -66,6 +70,19 @@
# module parameters provide easy access to attributes of the same
# system.
emanote.sites = {
osds-site = {
layers = [
{
# path = ./nixos-apps/ewanick.com;
# pathString = "nixos-apps/ewanick.com";
}
];
baseUrl = "ewanick.com";
port = 5567;
};
};
# Equivalent to inputs'.nixpkgs.legacyPackages.hello;
# packages.default = pkgs.hello;