Temporarily use some packages from nixpkgs-master

This commit is contained in:
Charlotte Van Petegem 2020-02-21 14:04:02 +01:00
parent 36ca746b47
commit f23200c460
5 changed files with 24 additions and 24 deletions

View file

@ -1,9 +1,10 @@
let
pkgs = import <nixpkgs> {};
nixpkgs-master = import <nixpkgs-master> {};
baseVimConfig = import ./vim-base.nix { inherit pkgs; };
in
pkgs.mkShell {
buildInputs = with pkgs; [
buildInputs = with nixpkgs-master; [
(neovim.override {
configure = {
customRC = baseVimConfig.customRC;

View file

@ -2,12 +2,5 @@ let
pkgs = import <nixpkgs> {};
in
pkgs.mkShell {
buildInputs = with pkgs; [
(neovim.override {
configure = {
customRC = baseVimConfig.customRC;
vam.pluginDictionaries = (baseVimConfig.vam.pluginDictionaries or []);
};
})
];
buildInputs = with pkgs; [];
}

View file

@ -1,14 +1,17 @@
with import <nixpkgs> {};
{
home-manager.users.charlotte = { pkgs, ... }: {
nixpkgs.overlays = [
(self: super: {
neovim = super.neovim.override {
configure = (import ../direnv/shells/vim-base.nix { pkgs = self; }) ;
};
})
];
home.packages = [ pkgs.neovim ];
};
}
let
nixpkgs-master = import <nixpkgs-master> {};
in
{
home-manager.users.charlotte = { pkgs, ... }: {
nixpkgs.overlays = [
(self: super: {
neovim = nixpkgs-master.neovim.override {
configure = (import ../direnv/shells/vim-base.nix { pkgs = self; }) ;
};
})
];
home.packages = [ pkgs.neovim ];
};
}

View file

@ -207,9 +207,6 @@ in
};
home-manager.users.charlotte = { pkgs, ... }: {
nixpkgs.overlays = [
(self: super: { waybar = super.waybar.override { pulseSupport = true; mpdSupport = false; }; })
];
home.packages = [ color-picker ];
xdg.configFile."sway/config".text = ''
# Config for sway

View file

@ -1,7 +1,13 @@
{ pkgs, ... }:
let
nixpkgs-master = import <nixpkgs-master> {};
in
{
home-manager.users.charlotte = { pkgs, ... }: {
nixpkgs.overlays = [
(self: super: { waybar = nixpkgs-master.waybar.override { pulseSupport = true; mpdSupport = false; }; })
];
xdg.configFile = {
"waybar/config".text = ''
{