mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-01-01 17:36:33 +01:00
More flake.nix clean up
This commit is contained in:
parent
42824f0b3e
commit
d538340173
1 changed files with 22 additions and 19 deletions
41
flake.nix
41
flake.nix
|
@ -36,10 +36,6 @@
|
|||
inputs.flake-compat.follows = "flake-compat";
|
||||
inputs.libnbtplusplus.follows = "libnbtplusplus";
|
||||
};
|
||||
libnbtplusplus = {
|
||||
url = github:PrismLauncher/libnbtplusplus;
|
||||
flake = false;
|
||||
};
|
||||
|
||||
# vscode extensions
|
||||
nix-vscode-extensions = {
|
||||
|
@ -64,21 +60,6 @@
|
|||
inputs.snowfall-lib.follows = "snowfall-lib";
|
||||
};
|
||||
|
||||
comma = {
|
||||
url = github:nix-community/comma;
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
inputs.flake-compat.follows = "flake-compat";
|
||||
inputs.utils.follows = "flake-utils";
|
||||
inputs.naersk.follows = "naersk";
|
||||
};
|
||||
|
||||
deploy-rs = {
|
||||
url = github:serokell/deploy-rs;
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
inputs.flake-compat.follows = "flake-compat";
|
||||
inputs.utils.follows = "flake-utils";
|
||||
};
|
||||
|
||||
peerix = {
|
||||
url = github:cid-chan/peerix;
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
|
@ -97,16 +78,38 @@
|
|||
url = github:edolstra/flake-compat;
|
||||
flake = false;
|
||||
};
|
||||
|
||||
flake-utils.url = github:numtide/flake-utils;
|
||||
nixlib.url = github:nix-community/nixpkgs.lib;
|
||||
|
||||
naersk = {
|
||||
url = github:nix-community/naersk;
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
flake-utils-plus = {
|
||||
url = github:gytis-ivaskevicius/flake-utils-plus;
|
||||
inputs.flake-utils.follows = "flake-utils";
|
||||
};
|
||||
comma = {
|
||||
url = github:nix-community/comma;
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
inputs.flake-compat.follows = "flake-compat";
|
||||
inputs.utils.follows = "flake-utils";
|
||||
inputs.naersk.follows = "naersk";
|
||||
};
|
||||
|
||||
deploy-rs = {
|
||||
url = github:serokell/deploy-rs;
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
inputs.flake-compat.follows = "flake-compat";
|
||||
inputs.utils.follows = "flake-utils";
|
||||
};
|
||||
|
||||
libnbtplusplus = {
|
||||
url = github:PrismLauncher/libnbtplusplus;
|
||||
flake = false;
|
||||
};
|
||||
};
|
||||
|
||||
outputs = inputs:
|
||||
|
|
Loading…
Reference in a new issue