mirror of
https://github.com/traxys/Nixfiles.git
synced 2026-03-31 01:17:26 +02:00
reduce the number of copies of nixpkgs
This commit is contained in:
parent
1e74ff1f14
commit
792663ce08
1 changed files with 12 additions and 4 deletions
16
flake.nix
16
flake.nix
|
|
@ -4,8 +4,10 @@
|
|||
inputs =
|
||||
{
|
||||
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
||||
home-manager.url = "github:nix-community/home-manager";
|
||||
neovim-nightly-overlay.url = "github:nix-community/neovim-nightly-overlay";
|
||||
home-manager = {
|
||||
url = "github:nix-community/home-manager";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
nixpkgs-mozilla = {
|
||||
url = "github:mozilla/nixpkgs-mozilla";
|
||||
flake = false;
|
||||
|
|
@ -14,12 +16,18 @@
|
|||
url = "git+https://gitlab.scd31.com/stephen/dotacat.git";
|
||||
flake = false;
|
||||
};
|
||||
rnix-lsp.url = "github:nix-community/rnix-lsp";
|
||||
rnix-lsp = {
|
||||
url = "github:nix-community/rnix-lsp";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
stylua = {
|
||||
url = "github:johnnymorganz/stylua";
|
||||
flake = false;
|
||||
};
|
||||
naersk.url = "github:nix-community/naersk";
|
||||
naersk = {
|
||||
url = "github:nix-community/naersk";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
fast-syntax-highlighting = {
|
||||
url = "github:z-shell/fast-syntax-highlighting";
|
||||
flake = false;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue