mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-01-04 10:46:50 +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.flake-compat.follows = "flake-compat";
|
||||||
inputs.libnbtplusplus.follows = "libnbtplusplus";
|
inputs.libnbtplusplus.follows = "libnbtplusplus";
|
||||||
};
|
};
|
||||||
libnbtplusplus = {
|
|
||||||
url = github:PrismLauncher/libnbtplusplus;
|
|
||||||
flake = false;
|
|
||||||
};
|
|
||||||
|
|
||||||
# vscode extensions
|
# vscode extensions
|
||||||
nix-vscode-extensions = {
|
nix-vscode-extensions = {
|
||||||
|
@ -64,21 +60,6 @@
|
||||||
inputs.snowfall-lib.follows = "snowfall-lib";
|
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 = {
|
peerix = {
|
||||||
url = github:cid-chan/peerix;
|
url = github:cid-chan/peerix;
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
@ -97,16 +78,38 @@
|
||||||
url = github:edolstra/flake-compat;
|
url = github:edolstra/flake-compat;
|
||||||
flake = false;
|
flake = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
flake-utils.url = github:numtide/flake-utils;
|
flake-utils.url = github:numtide/flake-utils;
|
||||||
nixlib.url = github:nix-community/nixpkgs.lib;
|
nixlib.url = github:nix-community/nixpkgs.lib;
|
||||||
|
|
||||||
naersk = {
|
naersk = {
|
||||||
url = github:nix-community/naersk;
|
url = github:nix-community/naersk;
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
|
|
||||||
flake-utils-plus = {
|
flake-utils-plus = {
|
||||||
url = github:gytis-ivaskevicius/flake-utils-plus;
|
url = github:gytis-ivaskevicius/flake-utils-plus;
|
||||||
inputs.flake-utils.follows = "flake-utils";
|
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:
|
outputs = inputs:
|
||||||
|
|
Loading…
Reference in a new issue