mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 10:49:44 +01:00
22 lines
487 B
Nix
22 lines
487 B
Nix
{ config, pkgs, ... }: {
|
|
config = {
|
|
services.pbgopy.enable = true;
|
|
|
|
nixpkgs.overlays = [
|
|
(self: super: {
|
|
pbgopy = pkgs.writeScriptBin "dummy-pbgopy" "" // {
|
|
outPath = "@pbgopy@";
|
|
};
|
|
})
|
|
];
|
|
|
|
nmt.script = ''
|
|
serviceFile=home-files/.config/systemd/user/pbgopy.service
|
|
|
|
assertFileExists $serviceFile
|
|
|
|
assertFileContains $serviceFile \
|
|
'ExecStart=@pbgopy@/bin/pbgopy serve --port 9090 --ttl 24h'
|
|
'';
|
|
};
|
|
}
|