mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-03-22 17:49:07 +01:00
flake: Deduplicate input dependencies
This commit is contained in:
parent
185fd5a53b
commit
f49b1ee81d
2 changed files with 27 additions and 88 deletions
15
flake.nix
15
flake.nix
|
|
@ -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 = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue