10 lines
169 B
Nix
10 lines
169 B
Nix
{ pkgs ? import <nixpkgs> { overlays = [ (import ./default.nix) ]; } }:
|
|
|
|
pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
cpthook
|
|
hacompanion
|
|
pulse-secure
|
|
];
|
|
}
|