Use nixos unstable neovim

Required adding nixos-unstable channel first
This commit is contained in:
asonix 2022-10-15 17:46:40 -05:00
parent 1e40d784a5
commit 13c844e5a6

View file

@ -1,6 +1,8 @@
{ config, pkgs, ... }:
{
let
unstable = import <nixos-unstable> {};
in {
imports = [ ./zsh.nix ./ssh.nix ];
home.username = "asonix";
@ -9,9 +11,10 @@
nixpkgs.overlays = [
(self: super: {
obs-studio-plugins = super.obs-studio-plugins // {
obs-scene-switcher = super.libsForQt5.callPackage ./obs-scene-switcher/obs-scene-switcher.nix { };
obs-streamfx = super.libsForQt5.callPackage ./obs-streamfx/obs-streamfx.nix { };
obs-scene-switcher = super.libsForQt5.callPackage ./obs-scene-switcher/obs-scene-switcher.nix {};
obs-streamfx = super.libsForQt5.callPackage ./obs-streamfx/obs-streamfx.nix {};
};
neovim = unstable.neovim;
})
];
@ -29,6 +32,8 @@
nextcloud-client
tdesktop
vlc
neovim
];
home.stateVersion = "22.05";