Barebones ci-runner module

This commit is contained in:
Benjamin Bädorf 2022-08-13 20:38:41 +02:00
parent 2dda411388
commit 19303496b3
No known key found for this signature in database
GPG key ID: 4406E80E13CD656C

View file

@ -0,0 +1,22 @@
{ lib, config, pkgs, ... }:
with lib;
let
psCfg = config.pub-solar;
cfg = config.pub-solar.ci-runner;
in
{
options.pub-solar.ci-runner = {
enable = mkEnableOption "Starts a :";
};
config = mkIf cfg.enable {
home-manager = with pkgs; pkgs.lib.setAttrByPath [ "users" psCfg.user.name ] {
home.packages = [
ps-signal-desktop
tdesktop
element-desktop
irssi
];
};
};
}