diff options
Diffstat (limited to 'nix/lib')
-rw-r--r-- | nix/lib/flake-helper.nix | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/nix/lib/flake-helper.nix b/nix/lib/flake-helper.nix index 2f8a020..ddace97 100644 --- a/nix/lib/flake-helper.nix +++ b/nix/lib/flake-helper.nix @@ -51,9 +51,7 @@ rec { # allow the usage of the inputs within the systemd # for example: # { pkgs, ... } @ args: { imports = ["${args.inputs.nixpkgs-unstable}/path/to/module.nix"] } - specialArgs = { - inherit inputs; - }; + specialArgs = { inherit inputs self; }; # ; nix repl # nix-repl> :lf . @@ -200,8 +198,8 @@ rec { sshUser = sshUser; # user to ssh to as # make sure people can use sudo - # sshOpts = ["-A", "-t", "-S"]; - sshOpts = [ "-o" "ProxyCommand=none" ]; + sshOpts = ["-A" "-t" "-S"]; + # sshOpts = [ "-o" "ProxyCommand=none" ]; # make sure to add the nix foo on the darwin hosts to ~/.zshenv # as the ~/.zshrc doesn't get sourced when ssh-ing into the system |