Add ghettoptt service

This commit is contained in:
2024-03-09 23:19:38 +01:00
parent 137fec122b
commit fb3413baff
5 changed files with 80 additions and 12 deletions

View File

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