flake: Deduplicate input dependencies

This commit is contained in:
SebastianStork 2026-03-03 22:39:06 +01:00
parent 185fd5a53b
commit f49b1ee81d
Signed by: SebastianStork
SSH key fingerprint: SHA256:tRrGdjYOwgHxpSc/wTOZQZEjxcb15P0tyXRsbAfd+2Q
2 changed files with 27 additions and 88 deletions

View file

@ -23,7 +23,10 @@
statix = {
url = "github:oppiliappan/statix";
inputs.nixpkgs.follows = "nixpkgs";
inputs = {
nixpkgs.follows = "nixpkgs";
flake-parts.follows = "flake-parts";
};
};
# For Workstations
@ -50,11 +53,17 @@
};
# For Servers
impermanence.url = "github:nix-community/impermanence";
impermanence = {
url = "github:nix-community/impermanence";
inputs.home-manager.follows = "home-manager";
};
comin = {
url = "github:nlewo/comin";
inputs.nixpkgs.follows = "nixpkgs";
inputs = {
nixpkgs.follows = "nixpkgs";
treefmt-nix.follows = "treefmt";
};
};
dns = {