Add notlistener

This commit is contained in:
2024-03-07 04:00:22 +01:00
parent a7250e9581
commit fb712795ea
3 changed files with 43 additions and 3 deletions

View File

@@ -10,9 +10,10 @@
inputs.nixpkgs.follows = "nixpkgs";
};
sops-nix.url = "github:Mic92/sops-nix";
notlistener.url = "git+https://git.t-juice.club/torjus/notlistener?ref=master";
};
outputs = { self, nixpkgs, nixpkgs-unstable, sops-nix, ... }@inputs:
outputs = { self, nixpkgs, nixpkgs-unstable, sops-nix, notlistener, ... }@inputs:
let
system = "x86_64-linux";
user = "torjus";
@@ -39,7 +40,7 @@
inherit system;
specialArgs = { inherit inputs self user sops-nix; };
modules = [
({ config, pkgs, ... }: { nixpkgs.overlays = [ overlay-unstable ]; })
({ config, pkgs, ... }: { nixpkgs.overlays = [ overlay-unstable notlistener.overlays.default ]; })
./hosts/gunter
sops-nix.nixosModules.sops
];