From e239e4dd0a885d340b49803b04079bc587e9f676 Mon Sep 17 00:00:00 2001 From: xbazzi Date: Sat, 9 Aug 2025 12:41:55 -0600 Subject: [PATCH] Quickshell small fix --- flake.lock | 24 ++++++++++++------------ home/quickshell/shell.qml | 2 +- system/services.nix | 5 ++++- system/vscode.nix | 14 +++++++++++++- 4 files changed, 30 insertions(+), 15 deletions(-) diff --git a/flake.lock b/flake.lock index ef5deb5..c64994a 100755 --- a/flake.lock +++ b/flake.lock @@ -294,11 +294,11 @@ ] }, "locked": { - "lastModified": 1754457347, - "narHash": "sha256-QN9yZ1L5EmR16NNM+hNNzMjARk+FPjUeSE/ds4Kms0E=", + "lastModified": 1754756528, + "narHash": "sha256-W1jYKMetZSOHP5m2Z5Wokdj/ct17swPHs+MiY2WT1HQ=", "owner": "nix-community", "repo": "home-manager", - "rev": "ad5d2b4aa770fdc74c80fd682fee0b00a8ad7991", + "rev": "3ec1cd9a0703fbd55d865b7fd2b07d08374f0355", "type": "github" }, "original": { @@ -413,11 +413,11 @@ ] }, "locked": { - "lastModified": 1754068594, - "narHash": "sha256-Yd8+iDw9FBg5agiCVs0aPwaBLSvgZFjjMJcJTAFLZcA=", + "lastModified": 1754517526, + "narHash": "sha256-zPfU6I7AqlDpoC0ZLTnayqCOyEn9Emub/ca4ATP/XxY=", "owner": "hyprwm", "repo": "hyprland-plugins", - "rev": "ba1823c7870dc2a35e38ec09848a0294dfecc2a8", + "rev": "c8dc6f3d5437d26fae625c40388ba52e97bc5fdf", "type": "github" }, "original": { @@ -674,11 +674,11 @@ }, "nixpkgs_2": { "locked": { - "lastModified": 1754214453, - "narHash": "sha256-Q/I2xJn/j1wpkGhWkQnm20nShYnG7TI99foDBpXm1SY=", + "lastModified": 1754498491, + "narHash": "sha256-erbiH2agUTD0Z30xcVSFcDHzkRvkRXOQ3lb887bcVrs=", "owner": "nixos", "repo": "nixpkgs", - "rev": "5b09dc45f24cf32316283e62aec81ffee3c3e376", + "rev": "c2ae88e026f9525daf89587f3cbee584b92b6134", "type": "github" }, "original": { @@ -815,11 +815,11 @@ "tinted-zed": "tinted-zed" }, "locked": { - "lastModified": 1754438321, - "narHash": "sha256-sRRV9FAZyCbq91IXc6gokBGNe0mF3DPbX/ceY8vUvw0=", + "lastModified": 1754597531, + "narHash": "sha256-OpC9/PBIuL2WEJUkcuD/wVxI8r+3o6f5RylSIefjHo4=", "owner": "danth", "repo": "stylix", - "rev": "8410296a30e62e06305020cb74d3247cfa45d9cc", + "rev": "63bb34a66ad7d1af2e95ee20dd675896b2074c32", "type": "github" }, "original": { diff --git a/home/quickshell/shell.qml b/home/quickshell/shell.qml index 386a139..593d0b5 100644 --- a/home/quickshell/shell.qml +++ b/home/quickshell/shell.qml @@ -25,7 +25,7 @@ Variants { // center clock Text { id: clock - //anchors.centerIn: parent + anchors.centerIn: parent font.pixelSize: 13 color: "#e6e6e6" } diff --git a/system/services.nix b/system/services.nix index 353855e..bb65985 100755 --- a/system/services.nix +++ b/system/services.nix @@ -4,7 +4,10 @@ # Enable the OpenSSH daemon. services.openssh = { enable = true; - forwardX11 = true; + + settings = { + X11Forwarding = true; + }; }; # services.udev.packages = [ pkgs.gnome-settings-daemon ]; } diff --git a/system/vscode.nix b/system/vscode.nix index 2353fd4..330a764 100755 --- a/system/vscode.nix +++ b/system/vscode.nix @@ -27,14 +27,26 @@ vscode-icons-team.vscode-icons ms-vscode-remote.remote-containers bmewburn.vscode-intelephense-client - jnoortheen.nix-ide zxh404.vscode-proto3 twxs.cmake + + # Use the nix-ide instead # arrterian.nix-env-selector # bbenoist.nix + jnoortheen.nix-ide + + # Doesn't work lmao. Use bbnoist's + # TheQtCompany.qt-qml + # bbenoist.qml mkhl.direnv ] ++ pkgs.vscode-utils.extensionsFromVscodeMarketplace [ + # { + # name = "QML"; # keep exact Marketplace name + # publisher = "bbenoist"; + # version = "1.7.1"; # or di current version + # sha256 = "1hp6gjh4xp2m1xlm1jsdzxw9d8frkiidhph6nvl24d0h8z34w49g"; + # } { name = "remote-ssh-edit"; publisher = "ms-vscode-remote";