cleanup and git theme

Signed-off-by: Harald Hoyer <harald@hoyer.xyz>
This commit is contained in:
Harald Hoyer 2024-03-12 01:18:14 +01:00
parent 05e5d3bc39
commit 41b5142e74
12 changed files with 4 additions and 210 deletions

View file

@ -16,15 +16,6 @@ in
plusultra = {
nix = enabled;
#cli-apps = {
# neovim = enabled;
#};
tools = {
git = enabled;
#flake = enabled;
};
system = {
fonts = enabled;
#input = enabled;

View file

@ -1,35 +0,0 @@
{ options, config, lib, pkgs, ... }:
with lib;
with lib.plusultra;
let
cfg = config.plusultra.suites.development;
in
{
options.plusultra.suites.development = with types; {
enable = mkBoolOpt false
"Whether or not to enable common development configuration.";
};
config = mkIf cfg.enable {
plusultra = {
#apps = {
# vscode = enabled;
#};
tools = {
# at = enabled;
# direnv = enabled;
# go = enabled;
# http = enabled;
# k8s = enabled;
# node = enabled;
# titan = enabled;
# python = enabled;
# java = enabled;
};
# virtualisation = { podman = enabled; };
};
};
}