feat!: remove exegol

This commit is contained in:
2026-05-21 10:21:10 +02:00
parent 10b0a4d862
commit 0521e895a2
2 changed files with 0 additions and 22 deletions
-3
View File
@@ -1,7 +1,6 @@
{
imports = [
./hardware-configuration.nix
./exegol.nix
];
# Enable CUPS to print documents.
@@ -22,8 +21,6 @@
# pulse.enable = true;
# };
kekleo.exegol = true;
users.users = {
leonhard = {
initialPassword = "leonhard";
-19
View File
@@ -1,19 +0,0 @@
{
config,
lib,
pkgs,
...
}:
{
options.kekleo.exegol = lib.mkOption {
type = lib.types.bool;
default = false;
description = "Whether to enable exegol.";
};
config = lib.mkIf config.kekleo.exegol {
virtualisation.docker.enable = true;
users.extraGroups.docker.members = [ "leonhard" ];
environment.systemPackages = with pkgs; [ exegol4 ];
};
}