Use the unstable overlay in other places
This commit is contained in:
parent
8876a339b6
commit
1a627d1828
3 changed files with 6 additions and 14 deletions
|
@ -1,4 +1,4 @@
|
|||
{ pkgs, pkgsUnstable, ... }:
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
home.file.".gitmessage".text = ''
|
||||
|
@ -146,7 +146,7 @@
|
|||
};
|
||||
};
|
||||
|
||||
home.packages = with pkgsUnstable; [ git-instafix ];
|
||||
home.packages = with pkgs.unstable; [ git-instafix ];
|
||||
|
||||
home.sessionVariables = {
|
||||
GIT_INSTAFIX_UPSTREAM = "origin/main";
|
||||
|
|
|
@ -1,15 +1,10 @@
|
|||
{
|
||||
inputs,
|
||||
pkgs,
|
||||
pkgsUnstable,
|
||||
...
|
||||
}:
|
||||
{ inputs, pkgs, ... }:
|
||||
|
||||
{
|
||||
programs.neovim = {
|
||||
enable = true;
|
||||
|
||||
package = pkgsUnstable.neovim-unwrapped;
|
||||
package = pkgs.unstable.neovim-unwrapped;
|
||||
|
||||
plugins = with pkgs.vimPlugins; [
|
||||
comment-nvim
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue