Avoid unfree in local dev environment

This commit is contained in:
Greg Hellings
2024-10-10 13:01:37 -05:00
parent eebeb3ca6d
commit 6803ec0e6d
4 changed files with 16 additions and 6 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
{ pkgs, lib, ... }:
{ config, pkgs, lib, ... }:
let
vim-xonsh = pkgs.vimUtils.buildVimPlugin {
name = "vim-xonsh";
@@ -90,7 +90,7 @@ in
};
};
copilot-vim = {
enable = true;
enable = config.nixpkgs.config.allowUnfree;
settings.workspace_folders = [ "~/src/ivr" ];
};
direnv.enable = true;