separate stable and unstable pkgs

This commit is contained in:
NotAShelf 2023-04-26 00:15:52 +03:00 committed by Frankie B
parent eee02f7a00
commit dc4f427d0f

View file

@ -3,11 +3,8 @@
inputs = { inputs = {
# Nixpkgs # Nixpkgs
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; # based unstable packages
# You can access packages and modules from different nixpkgs revs nixpkgs-master.url = "github:nixos/nixpkgs/master"; # cringe stable packages
# at the same time. Here's an working example:
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable";
# Also see the 'unstable-packages' overlay at 'overlays/default.nix'.
# Home manager # Home manager
home-manager = { home-manager = {
@ -15,6 +12,12 @@
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
# neovim-flake
neovim-flake = {
url = "github:notashelf/neovim-flake";
inputs.nixpkgs.follows = "nixpkgs";
};
# TODO: Add any other flake you might need # TODO: Add any other flake you might need
# nixos-hardware.url = "github:nixos/nixos-hardware"; # nixos-hardware.url = "github:nixos/nixos-hardware";
}; };