mirror of
https://github.com/nmasur/dotfiles
synced 2025-01-31 08:42:02 +00:00
18 lines
193 B
Nix
18 lines
193 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}:
|
|
|
|
let
|
|
cfg = config.nmasur.profiles.work;
|
|
in
|
|
|
|
{
|
|
|
|
options.nmasur.profiles.work.enable = lib.mkEnableOption "work machine";
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
};
|
|
}
|