mirror of
https://github.com/Jokiller230/puzzlevision.git
synced 2025-01-19 10:23:06 +01:00
Jo
e1bbf4856e
refactor: remove some comments feat: set VSCodium color scheme to Catppuccin Macchiato
16 lines
299 B
Nix
16 lines
299 B
Nix
{
|
|
lib,
|
|
namespace,
|
|
|
|
config,
|
|
...
|
|
}: with lib; with lib.${namespace};
|
|
let
|
|
cfg = config.${namespace}.common.networking;
|
|
in {
|
|
options.${namespace}.common.networking = { enable = mkEnableOption "networking"; };
|
|
|
|
config = mkIf cfg.enable {
|
|
networking.networkmanager.enable = true;
|
|
};
|
|
}
|