Bump dependencies

This commit is contained in:
coolneng 2021-10-17 20:56:51 +02:00
parent e3e4b6166f
commit adb10b8d3a
Signed by: coolneng
GPG Key ID: 9893DA236405AF57
2 changed files with 20 additions and 17 deletions

View File

@ -7,11 +7,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1631896269, "lastModified": 1634404028,
"narHash": "sha256-DAyCxJ8JacayOzGgGSfzrn7ghtsfL/EsCyk1NEUaAR8=", "narHash": "sha256-JyP2Y6JCCYvUcVz7CXX5pXUfTGTU4GX51Yza82BgMfk=",
"owner": "ryantm", "owner": "ryantm",
"repo": "agenix", "repo": "agenix",
"rev": "daf1d773989ac5d949aeef03fce0fe27e583dbca", "rev": "53aa91b4170da35a96fab1577c9a34bc0da44e27",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -22,11 +22,11 @@
}, },
"emacs-overlay": { "emacs-overlay": {
"locked": { "locked": {
"lastModified": 1634289381, "lastModified": 1634491178,
"narHash": "sha256-497CIfv2rayC5uafav42cGhkhtIMLWBsfXS6EtLGRcI=", "narHash": "sha256-Pzhr3uKOkRFP0dWUQsvL+epPxZ45PrlAfbfRro80FOs=",
"owner": "nix-community", "owner": "nix-community",
"repo": "emacs-overlay", "repo": "emacs-overlay",
"rev": "de536fa76c469b25e377674028641f6fe03b602d", "rev": "43f36e1f2dfad96879e06bdaa95b2d19cab1f78d",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -37,11 +37,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1634172192, "lastModified": 1634436779,
"narHash": "sha256-FBF4U/T+bMg4sEyT/zkgasvVquGzgdAf4y8uCosKMmo=", "narHash": "sha256-D/nrXTWpe1bPIjFy85sgiLHYqu+AeaC6v5/+KlA9PRg=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "2cf9db0e3d45b9d00f16f2836cb1297bcadc475e", "rev": "9aeeb7574fb784eaf6395f4400705b5f619e6cc3",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@ -6,6 +6,10 @@
agenix.url = "github:ryantm/agenix"; agenix.url = "github:ryantm/agenix";
agenix.inputs.nixpkgs.follows = "nixpkgs"; agenix.inputs.nixpkgs.follows = "nixpkgs";
emacs-overlay.url = "github:nix-community/emacs-overlay"; emacs-overlay.url = "github:nix-community/emacs-overlay";
openconnect-sso = {
url = "github:vlaci/openconnect-sso";
flake = false;
};
}; };
outputs = { self, nixpkgs, agenix, ... }@inputs: outputs = { self, nixpkgs, agenix, ... }@inputs:
@ -19,13 +23,12 @@
lib = nixpkgs.lib; lib = nixpkgs.lib;
in in {
{ nixosConfigurations.panacea = lib.nixosSystem {
nixosConfigurations.panacea = lib.nixosSystem { inherit system;
inherit system; modules = [ (import ./configuration.nix) agenix.nixosModules.age ];
modules = [ (import ./configuration.nix) agenix.nixosModules.age ]; specialArgs = { inherit inputs; };
specialArgs = { inherit inputs; };
};
}; };
};
} }