This commit is contained in:
2026-05-01 15:04:27 -06:00
parent 50ac93c727
commit 3c40029892
6 changed files with 36 additions and 17 deletions

View File

@@ -0,0 +1,12 @@
{ config, lib, pkgs, ... }:
let cfg = config.sydnix.kerbal-space-program;
in {
options.sydnix.kerbal-space-program = {
enable = lib.mkEnableOption "KSPslop";
};
config = lib.mkIf cfg.enable {
home.packages = [ pkgs.ckan ];
};
}