aboutsummaryrefslogtreecommitdiff
path: root/modules/home/niri/chernobyl/electron.nix
diff options
context:
space:
mode:
authorNatasha Moongrave <natasha@256phi.eu>2026-02-03 09:31:47 +0100
committerNatasha Moongrave <natasha@256phi.eu>2026-02-03 09:31:47 +0100
commit3dadeaa5a24edb78a65e47b8e373d7e0af220886 (patch)
tree25b9e404364cecf3dc204aa8b058bc0e8d361d51 /modules/home/niri/chernobyl/electron.nix
parent996bf6efefe44f0bbe023b5d9646f9d6466a16ed (diff)
changed something
Diffstat (limited to 'modules/home/niri/chernobyl/electron.nix')
-rw-r--r--modules/home/niri/chernobyl/electron.nix15
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"
+ ];
+ })
+];
+
}