32 lines
487 B
Nix
32 lines
487 B
Nix
|
{ ... }:
|
||
|
|
||
|
{
|
||
|
features = {
|
||
|
cli = {
|
||
|
docker.enable = true;
|
||
|
};
|
||
|
|
||
|
desktop = {
|
||
|
autorandr.enable = true;
|
||
|
gaming.enable = true;
|
||
|
peek.enable = true;
|
||
|
};
|
||
|
|
||
|
homelab = {
|
||
|
gitea.enable = true;
|
||
|
immich.enable = true;
|
||
|
jellyfin.enable = true;
|
||
|
paperless.enable = true;
|
||
|
pihole.enable = true;
|
||
|
tubearchivist-container.enable = true;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
imports = [
|
||
|
../common
|
||
|
../../users/opdavies
|
||
|
|
||
|
./configuration.nix
|
||
|
];
|
||
|
}
|