Install openconnect-sso as overlay
This commit is contained in:
parent
e0c794dfdb
commit
b6d0c0a73e
|
@ -111,6 +111,7 @@ with pkgs;
|
|||
./modules/power.nix
|
||||
./overlays/emacs.nix
|
||||
./overlays/nix-direnv.nix
|
||||
./overlays/openconnect-sso.nix
|
||||
];
|
||||
|
||||
}
|
||||
|
|
|
@ -14,6 +14,10 @@
|
|||
agenix.url = "github:ryantm/agenix";
|
||||
agenix.inputs.nixpkgs.follows = "nixpkgs";
|
||||
emacs-overlay.url = "github:nix-community/emacs-overlay";
|
||||
openconnect-sso = {
|
||||
url = "github:vlaci/openconnect-sso";
|
||||
flake = false;
|
||||
};
|
||||
};
|
||||
|
||||
outputs = { self, nixpkgs, agenix, ... }@inputs:
|
||||
|
|
|
@ -90,6 +90,7 @@ in {
|
|||
teams
|
||||
# Networking
|
||||
openvpn
|
||||
openconnect-sso
|
||||
# Programming tools
|
||||
## Shell
|
||||
shellcheck
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
{ config, lib, pkgs, inputs, ... }: {
|
||||
nixpkgs.overlays = [ (import "${inputs.openconnect-sso}/overlay.nix") ];
|
||||
}
|
Loading…
Reference in New Issue