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