diff --git a/flake.lock b/flake.lock index 9b9171d..be4a78a 100644 --- a/flake.lock +++ b/flake.lock @@ -7,11 +7,11 @@ ] }, "locked": { - "lastModified": 1631896269, - "narHash": "sha256-DAyCxJ8JacayOzGgGSfzrn7ghtsfL/EsCyk1NEUaAR8=", + "lastModified": 1634404028, + "narHash": "sha256-JyP2Y6JCCYvUcVz7CXX5pXUfTGTU4GX51Yza82BgMfk=", "owner": "ryantm", "repo": "agenix", - "rev": "daf1d773989ac5d949aeef03fce0fe27e583dbca", + "rev": "53aa91b4170da35a96fab1577c9a34bc0da44e27", "type": "github" }, "original": { @@ -22,11 +22,11 @@ }, "emacs-overlay": { "locked": { - "lastModified": 1634289381, - "narHash": "sha256-497CIfv2rayC5uafav42cGhkhtIMLWBsfXS6EtLGRcI=", + "lastModified": 1634491178, + "narHash": "sha256-Pzhr3uKOkRFP0dWUQsvL+epPxZ45PrlAfbfRro80FOs=", "owner": "nix-community", "repo": "emacs-overlay", - "rev": "de536fa76c469b25e377674028641f6fe03b602d", + "rev": "43f36e1f2dfad96879e06bdaa95b2d19cab1f78d", "type": "github" }, "original": { @@ -37,11 +37,11 @@ }, "nixpkgs": { "locked": { - "lastModified": 1634172192, - "narHash": "sha256-FBF4U/T+bMg4sEyT/zkgasvVquGzgdAf4y8uCosKMmo=", + "lastModified": 1634436779, + "narHash": "sha256-D/nrXTWpe1bPIjFy85sgiLHYqu+AeaC6v5/+KlA9PRg=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "2cf9db0e3d45b9d00f16f2836cb1297bcadc475e", + "rev": "9aeeb7574fb784eaf6395f4400705b5f619e6cc3", "type": "github" }, "original": { diff --git a/flake.nix b/flake.nix index 40aa367..36c26f3 100644 --- a/flake.nix +++ b/flake.nix @@ -6,6 +6,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: @@ -19,13 +23,12 @@ lib = nixpkgs.lib; - in - { - nixosConfigurations.panacea = lib.nixosSystem { - inherit system; - modules = [ (import ./configuration.nix) agenix.nixosModules.age ]; - specialArgs = { inherit inputs; }; - }; - + in { + nixosConfigurations.panacea = lib.nixosSystem { + inherit system; + modules = [ (import ./configuration.nix) agenix.nixosModules.age ]; + specialArgs = { inherit inputs; }; }; + + }; }