13 lines
246 B
Nix
13 lines
246 B
Nix
{ 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 ];
|
|
};
|
|
}
|