1
0
Fork 0
mirror of https://git.sr.ht/~roxwize/.dotfiles synced 2025-05-09 07:03:08 +00:00
This commit is contained in:
Rae 5e 2025-03-03 23:55:20 -05:00
parent bbcc5dbb76
commit 721a38ce25
Signed by: rae
GPG key ID: 5B1A0FAB9BAB81EE
6 changed files with 110 additions and 7 deletions

12
nixos/docker/default.nix Normal file
View file

@ -0,0 +1,12 @@
{ lib, config, ... }: with lib; let
c = options.containers;
in {
options.containers = {
homepage = {
#TODO: https://github.com/NixOS/nixpkgs/blob/nixos-24.11/nixos/modules/services/misc/homepage-dashboard.nix#L221
enable = mkEnableOption "homepage";
};
};
config = mkIf c.homepage import ./homepage;
}