mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 17:17:22 +01:00
13 lines
331 B
Nix
13 lines
331 B
Nix
{ lib, config, ... }:
|
|
{
|
|
options.swarselsystems.profiles.server.local = lib.mkEnableOption "is this a local server";
|
|
config = lib.mkIf config.swarselsystems.profiles.server.local {
|
|
swarselsystems.modules = {
|
|
general = lib.mkDefault true;
|
|
server = {
|
|
dotfiles = lib.mkDefault true;
|
|
};
|
|
};
|
|
};
|
|
|
|
}
|