This commit is contained in:
xunuwu 2024-09-09 10:44:05 +02:00
parent d983b9ad92
commit f5a34ca35a
Signed by: xun
SSH key fingerprint: SHA256:Uot/1WoAjWAeqLOHA5vYy4phhVydsH7jCPmBjaPZfgI
3 changed files with 22 additions and 3 deletions

View file

@ -4,5 +4,6 @@
./gaming ./gaming
./programs ./programs
./desktop ./desktop
./school
]; ];
} }

View file

@ -0,0 +1,19 @@
{
pkgs,
config,
lib,
...
}: let
cfg = config.xun.school;
in {
options.xun.school = {
geogebra.enable = lib.mkEnableOption "geogebra";
};
config = lib.mkMerge [
(lib.mkIf cfg.geogebra.enable {
home.packages = with pkgs; [
geogebra6
];
})
];
}

View file

@ -90,8 +90,7 @@
c = enabled; c = enabled;
}; };
}; };
gaming = { gaming.roblox.sobercookie = enabled;
roblox.sobercookie = enabled; school.geogebra = enabled;
};
}; };
} }