diff options
Diffstat (limited to 'modules/home/niri/chernobyl/electron.nix')
| -rw-r--r-- | modules/home/niri/chernobyl/electron.nix | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/modules/home/niri/chernobyl/electron.nix b/modules/home/niri/chernobyl/electron.nix index 95d03af..48768f4 100644 --- a/modules/home/niri/chernobyl/electron.nix +++ b/modules/home/niri/chernobyl/electron.nix @@ -1,9 +1,12 @@ -{ pkgs, ... }: +{ pkgs, lib, ... }: { - (pkgs.vscode.override { - commandLineArgs = [ - "--wayland-text-input-version=3" - ]; -}); +home.packages = with pkgs; [ + (vscode.override { + commandLineArgs = [ + "--wayland-text-input-version=3" + ]; + }) +]; + } |
