diff --git a/nixos/home.nix b/nixos/home.nix index 409d28ef..e4dbff94 100644 --- a/nixos/home.nix +++ b/nixos/home.nix @@ -35,6 +35,7 @@ in }; home.file.".vimrc".source = ~/dev/dotfiles/.vimrc.nixos; + home.file.".config/nixpkgs/config.nix".source = ~/dev/dotfiles/nixos/shell-config.nix; imports = [ ./programs/tmux.nix diff --git a/nixos/shell-config.nix b/nixos/shell-config.nix new file mode 100644 index 00000000..451d7f5d --- /dev/null +++ b/nixos/shell-config.nix @@ -0,0 +1,6 @@ +{ + permittedInsecurePackages = [ + "webkitgtk-2.4.11" + ]; +} +