From 13c844e5a6b9099b14e5b43c034bf4835f68981b Mon Sep 17 00:00:00 2001 From: asonix Date: Sat, 15 Oct 2022 17:46:40 -0500 Subject: [PATCH] Use nixos unstable neovim Required adding nixos-unstable channel first --- config/nixpkgs/home.nix | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/config/nixpkgs/home.nix b/config/nixpkgs/home.nix index 1408d87..7061852 100644 --- a/config/nixpkgs/home.nix +++ b/config/nixpkgs/home.nix @@ -1,6 +1,8 @@ { config, pkgs, ... }: -{ +let + unstable = import {}; +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";