This commit is contained in:
2023-02-25 05:12:03 +00:00
parent d012c7081e
commit b37e1ad042
2 changed files with 7 additions and 5 deletions

View File

@@ -28,11 +28,11 @@
#pkgs.wsl-ssh-agent-relay #pkgs.wsl-ssh-agent-relay
]; ];
nixpkgs.config.packageOverrides = pkgs: # nixpkgs.config.packageOverrides = pkgs:
with pkgs; rec { # with pkgs; rec {
npiperelay = callPackage ../../pkgs/npiperelay { }; # npiperelay = callPackage ../../pkgs/npiperelay { };
#wsl-ssh-agent-relay = callPackage ../../pkgs/wsl-ssh-agent-relay { }; # #wsl-ssh-agent-relay = callPackage ../../pkgs/wsl-ssh-agent-relay { };
}; # };
systemd.services.nixs-wsl-systemd-fix = { systemd.services.nixs-wsl-systemd-fix = {
description = "Fix the /dev/shm symlink to be a mount"; description = "Fix the /dev/shm symlink to be a mount";

View File

@@ -3,4 +3,6 @@
{ pkgs ? (import ../nixpkgs.nix) { } }: { { pkgs ? (import ../nixpkgs.nix) { } }: {
# example = pkgs.callPackage ./example { }; # example = pkgs.callPackage ./example { };
npiperelay = pkgs.callPackage ./npiperelay { };
} }