Install openconnect-sso as overlay
This commit is contained in:
parent
e0c794dfdb
commit
fbe0950a05
|
@ -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:
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
{ config, lib, pkgs, inputs, ... }: {
|
||||
nixpkgs.overlays = [ inputs.openconnect-sso.overlay ];
|
||||
}
|
Loading…
Reference in New Issue