From 91758a17ee34f3d81b175ff1eb5ed9c87e88dd36 Mon Sep 17 00:00:00 2001 From: Felix Stupp Date: Sun, 25 Aug 2024 12:47:25 +0200 Subject: [PATCH] flake: add input unattendend-installer --- flake.lock | 26 +++++++++++++++++++++++++- flake.nix | 6 ++++++ 2 files changed, 31 insertions(+), 1 deletion(-) diff --git a/flake.lock b/flake.lock index 6b93fc8..a2d9526 100644 --- a/flake.lock +++ b/flake.lock @@ -112,7 +112,8 @@ "nixos-hardware": "nixos-hardware", "nixpkgs": "nixpkgs", "nixpkgs_unstable": "nixpkgs_unstable", - "secrix": "secrix" + "secrix": "secrix", + "unattended-installer": "unattended-installer" } }, "secrix": { @@ -135,6 +136,29 @@ "repo": "secrix", "type": "github" } + }, + "unattended-installer": { + "inputs": { + "disko": [ + "disko" + ], + "nixpkgs": [ + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1724352083, + "narHash": "sha256-GP8YzfLFOFcSSRqGkzG7HGu/hT749saBgRUMSClkqwU=", + "owner": "chrillefkr", + "repo": "nixos-unattended-installer", + "rev": "25936f740d57d43a05adbb0e667deabd641d9ebc", + "type": "github" + }, + "original": { + "owner": "chrillefkr", + "repo": "nixos-unattended-installer", + "type": "github" + } } }, "root": "root", diff --git a/flake.nix b/flake.nix index f874421..faede34 100644 --- a/flake.nix +++ b/flake.nix @@ -27,6 +27,12 @@ # required for configs nixos-hardware.url = "github:NixOS/nixos-hardware/master"; + unattended-installer = { + url = "github:chrillefkr/nixos-unattended-installer"; + inputs.disko.follows = "disko"; + inputs.nixpkgs.follows = "nixpkgs"; + }; + }; outputs =