cerulean/flake.nix

40 lines
1 KiB
Nix
Raw Permalink 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";
2025-12-13 09:30:20 +10:00
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.11";
nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixos-unstable";
2026-02-13 12:08:02 +10:00
nt.url = "github:cry128/nt";
2026-01-15 12:49:41 +10:00
2025-12-13 13:24:37 +10:00
deploy-rs.url = "github:serokell/deploy-rs";
2025-12-13 09:30:20 +10:00
};
2025-12-13 13:24:37 +10:00
outputs = {
2025-12-13 09:30:20 +10:00
nixpkgs,
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
(inputs
// {
inherit (nixpkgs) lib;
inherit (nt) mix;
});
2025-12-13 09:30:20 +10:00
}