From 9e87f2d47599faa720c8124e1a308714ff058fde Mon Sep 17 00:00:00 2001 From: Tao Tien <29749622+taotien@users.noreply.github.com> Date: Wed, 4 Jun 2025 22:16:53 -0700 Subject: [PATCH] nomashcine --- extras/dev.nix | 1 + mprocs.log | 1 - systems/BASED.nix | 2 ++ users/tao/nushell/extras/tailscale.nu | 10 +++++----- 4 files changed, 8 insertions(+), 6 deletions(-) delete mode 100644 mprocs.log diff --git a/extras/dev.nix b/extras/dev.nix index 14185fa..8beb4c2 100644 --- a/extras/dev.nix +++ b/extras/dev.nix @@ -1,5 +1,6 @@ {pkgs, ...}: { environment.systemPackages = with pkgs; [ + nomachine-client delta mask mprocs diff --git a/mprocs.log b/mprocs.log deleted file mode 100644 index 3cc7f7b..0000000 --- a/mprocs.log +++ /dev/null @@ -1 +0,0 @@ -ERROR [mprocs::error] Error: channel closed diff --git a/systems/BASED.nix b/systems/BASED.nix index c8b8762..79175d5 100644 --- a/systems/BASED.nix +++ b/systems/BASED.nix @@ -60,6 +60,8 @@ "browser.bookmarks.restore_default_bookmarks" = false; }; + services.flatpak.enable = true; + hardware.graphics.enable = true; # hardware.opengl = { # enable = true; diff --git a/users/tao/nushell/extras/tailscale.nu b/users/tao/nushell/extras/tailscale.nu index f232d4d..ec504c7 100644 --- a/users/tao/nushell/extras/tailscale.nu +++ b/users/tao/nushell/extras/tailscale.nu @@ -22,7 +22,7 @@ def tse [exit_node: string = ""] { tailscale set --exit-node $exit_node if ($exit_node | is-not-empty) { - return check-mullvad() + check-mullvad } else { print "exit node set" return true @@ -67,10 +67,10 @@ tsx # switch to a random mullvad exit node def tsr [] { -tsx - | get (random int 0..($in | length)) - | tse $in.IP - | return $in + tsx + | get (random int 0..($in | length)) + | tse $in.IP + | return $in } alias ts = tailscale