18 lines
496 B
Nix
18 lines
496 B
Nix
{
|
|
description = "nix flake config for server02";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-26.05";
|
|
nix-config.url = "git+https://git.voidarc.co.uk/voidarc/nixos.git?ref=dendritic";
|
|
|
|
# flake parts
|
|
flake-parts.url = "github:hercules-ci/flake-parts";
|
|
import-tree.url = "github:vic/import-tree";
|
|
|
|
# Disko
|
|
disko.url = "github:nix-community/disko";
|
|
};
|
|
|
|
outputs = inputs: inputs.flake-parts.lib.mkFlake {inherit inputs;} (inputs.import-tree ./modules);
|
|
}
|