nix/flake.nix

57 lines
1.4 KiB
Nix
Raw Permalink Normal View History

2024-09-05 12:28:09 -06:00
{
inputs = {
2026-02-10 23:54:24 -06:00
nixpkgs.url = "github:nixos/nixpkgs/nixos-25.11";
2024-09-05 12:28:09 -06:00
unstable.url = "github:nixos/nixpkgs/nixos-unstable";
home-manager = {
2026-02-10 23:54:24 -06:00
url = "github:nix-community/home-manager/release-25.11";
2024-09-05 12:28:09 -06:00
inputs.nixpkgs.follows = "nixpkgs";
};
2025-08-26 00:03:12 -06:00
trivionomicon = {
url = "./trivionomicon";
2025-08-25 23:18:01 -06:00
inputs.nixpkgs.follows = "nixpkgs";
};
2024-09-08 14:17:00 -06:00
homepage = {
url = "git+https://git.posixlycorrect.com/fabian/homepage.git";
inputs.nixpkgs.follows = "nixpkgs";
};
2025-08-05 21:59:10 -06:00
2024-09-08 14:17:00 -06:00
authentik-nix = {
url = "github:nix-community/authentik-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
mediawikiSkinCitizen = {
url = "github:StarCitizenTools/mediawiki-skins-Citizen/v2.27.0";
flake = false;
};
2025-08-25 23:18:01 -06:00
2025-08-26 00:03:12 -06:00
flake-utils.url = "github:numtide/flake-utils";
2025-08-25 23:18:01 -06:00
hm-isolation.url = "github:3442/hm-isolation";
2025-08-26 00:03:12 -06:00
impermanence.url = "github:nix-community/impermanence";
2025-08-25 23:18:01 -06:00
nixGL.url = "github:guibou/nixGL";
2025-08-26 00:03:12 -06:00
nur.url = "github:nix-community/NUR";
2025-08-25 23:18:01 -06:00
vpsadminos.url = "github:vpsfreecz/vpsadminos";
2024-09-05 12:28:09 -06:00
};
outputs = flakes:
flakes.trivionomicon.lib.mkSystemFlake {
inherit flakes;
2024-09-05 12:28:09 -06:00
system = "x86_64-linux";
2024-09-08 14:17:00 -06:00
paths = {
localOverlay = "pkgs";
nixpkgsConfig = "pkgs/config";
2024-09-08 14:50:36 -06:00
nixosSource = "sys";
nixosPlatforms = "sys/platforms";
2024-09-08 14:50:36 -06:00
hmSource = "home";
hmPlatforms = "home/platforms";
};
2024-09-05 12:28:09 -06:00
};
}