flake/flake.nix

56 lines
1.3 KiB
Nix
Raw Permalink Normal View History

2024-10-30 13:51:36 +10:00
{
2026-02-08 23:41:05 +10:00
description = "im gonna cry again ;-;";
2024-10-30 13:51:36 +10:00
inputs = {
2026-01-31 09:57:24 +10:00
systems.url = "github:nix-systems/default";
2026-01-31 09:42:35 +10:00
nixpkgs.url = "github:nixos/nixpkgs/nixos-25.11";
nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixos-unstable";
2024-11-07 17:37:15 +10:00
2026-02-08 23:41:05 +10:00
home-manager = {
url = "github:nix-community/home-manager/release-25.11";
2026-02-08 23:41:05 +10:00
inputs.nixpkgs.follows = "nixpkgs";
};
2026-02-16 09:35:57 +10:00
nt.url = "github:cry128/nt";
# nt.url = "/home/me/cry/mk/nt";
2026-02-09 09:43:37 +10:00
2026-02-08 23:41:05 +10:00
cerulean = {
2026-02-16 09:35:57 +10:00
url = "github:cry128/Cerulean";
# url = "/home/me/cry/mk/Cerulean";
2026-01-31 09:42:35 +10:00
inputs = {
2026-02-08 23:41:05 +10:00
systems.follows = "systems";
nixpkgs.follows = "nixpkgs";
2026-02-09 09:43:37 +10:00
nt.follows = "nt";
2026-01-31 09:42:35 +10:00
};
};
2025-11-01 13:21:55 +10:00
2026-02-13 12:47:55 +10:00
nix-flatpak.url = "github:gmodena/nix-flatpak/?ref=latest";
2026-02-08 18:56:06 +10:00
grub2-themes = {
url = "github:vinceliuice/grub2-themes";
inputs.nixpkgs.follows = "nixpkgs";
};
nixcord = {
url = "github:FlameFlag/nixcord";
inputs.nixpkgs.follows = "nixpkgs";
};
2026-01-31 09:42:44 +10:00
dobutterfliescry-net = {
2026-02-03 22:27:23 +10:00
url = "git+https://forge.dobutterfliescry.net/cry/site";
2026-01-31 09:42:44 +10:00
inputs = {
nixpkgs.follows = "nixpkgs";
nixpkgs-unstable.follows = "nixpkgs-unstable";
systems.follows = "systems";
};
};
2024-10-30 13:51:36 +10:00
};
nixConfig = {
extra-experimental-features = "pipe-operators";
};
2026-02-13 12:48:04 +10:00
outputs = inputs:
import ./snow.nix inputs;
2024-10-30 13:51:36 +10:00
}