move disko input up the tree

This commit is contained in:
2024-10-18 19:30:32 -05:00
parent 50f4f37a8c
commit 782086e95a
3 changed files with 18 additions and 34 deletions

View File

@@ -1,19 +0,0 @@
{
description = "disko config";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.05";
disko.url = "github:nix-community/disko";
disko.inputs.nixpkgs.follows = "nixpkgs";
};
outputs = { self, ... }@inputs: {
module = { config, lib, pkgs, ... }: {
imports = [
(import ./default.nix { inherit config lib pkgs; })
inputs.disko.nixosModules.default
];
};
};
}