Harald Hoyer
949e39cdba
- Commented out default SSH service enablement in common suite. - Updated SSH agent configuration to use dynamic user paths. - Removed outdated SSH keys and added missing key descriptions.
40 lines
572 B
Nix
40 lines
572 B
Nix
{
|
|
options,
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
|
|
with lib;
|
|
with lib.metacfg;
|
|
let
|
|
cfg = config.metacfg.suites.common;
|
|
in
|
|
{
|
|
options.metacfg.suites.common = with types; {
|
|
enable = mkBoolOpt false "Whether or not to enable common configuration.";
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
programs.fish = enabled;
|
|
|
|
metacfg = {
|
|
nix = enabled;
|
|
|
|
base = enabled;
|
|
|
|
system = {
|
|
fonts = enabled;
|
|
#input = enabled;
|
|
interface = enabled;
|
|
};
|
|
|
|
security = {
|
|
gpg = enabled;
|
|
#ssh = enabled;
|
|
};
|
|
};
|
|
};
|
|
}
|