mirror of
https://github.com/Moe1369/nix-fleet.git
synced 2026-04-24 15:59:06 +02:00
26 lines
1.1 KiB
Nix
26 lines
1.1 KiB
Nix
{
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
|
flake-parts.url = "github:hercules-ci/flake-parts";
|
|
import-tree.url = "github:vic/import-tree";
|
|
home-manager.url = "github:nix-community/home-manager/master";
|
|
home-manager.inputs.nixpkgs.follows = "nixpkgs";
|
|
lanzaboote.url = "github:nix-community/lanzaboote/v1.0.0";
|
|
lanzaboote.inputs.nixpkgs.follows = "nixpkgs";
|
|
sops-nix.url = "github:Mic92/sops-nix";
|
|
sops-nix.inputs.nixpkgs.follows = "nixpkgs";
|
|
disko.url = "github:nix-community/disko";
|
|
disko.inputs.nixpkgs.follows = "nixpkgs";
|
|
plasma-manager.url = "github:nix-community/plasma-manager";
|
|
plasma-manager.inputs.nixpkgs.follows = "nixpkgs";
|
|
plasma-manager.inputs.home-manager.follows = "home-manager";
|
|
jovian-nixos.url = "github:Jovian-Experiments/Jovian-NixOS";
|
|
jovian-nixos.inputs.nixpkgs.follows = "nixpkgs";
|
|
caelestia-shell.url = "github:caelestia-dots/shell";
|
|
caelestia-shell.inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
outputs = inputs: inputs.flake-parts.lib.mkFlake { inherit inputs; }
|
|
(inputs.import-tree ./modules);
|
|
}
|