cerulean/flake.nix

48 lines
1.3 KiB
Nix
Raw Normal View History

2025-12-14 14:02:06 +10:00
# Copyright 2025 Emile Clark-Boman
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
2025-12-13 09:30:20 +10:00
{
description = "Your Nix Cloud Simplified";
inputs = {
2025-12-13 13:24:37 +10:00
systems.url = "github:nix-systems/default";
# WARNING: nixpkgs is ONLY included so flakes using Cerulean can
# WARNING: force Cerulean's inputs to follow a specific revision.
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.11";
2026-02-13 12:08:02 +10:00
nt.url = "github:cry128/nt";
2026-01-15 12:49:41 +10:00
2026-02-15 13:43:19 +10:00
deploy-rs = {
url = "github:serokell/deploy-rs";
inputs.nixpkgs.follows = "nixpkgs";
};
microvm = {
url = "github:microvm-nix/microvm.nix";
inputs.nixpkgs.follows = "nixpkgs";
};
2025-12-13 09:30:20 +10:00
};
2025-12-13 13:24:37 +10:00
outputs = {
2026-02-16 08:19:07 +10:00
self,
2026-02-09 09:34:30 +10:00
nt,
2025-12-13 09:30:20 +10:00
...
2026-02-09 09:34:30 +10:00
} @ inputs:
import ./cerulean
2026-02-15 13:43:19 +10:00
{
2026-02-16 08:19:07 +10:00
inherit inputs self nt;
2026-02-15 13:43:19 +10:00
inherit (nt) mix;
};
2025-12-13 09:30:20 +10:00
}