16 lines
222 B
Nix
16 lines
222 B
Nix
{
|
|
pkgs,
|
|
inputs,
|
|
lib,
|
|
config,
|
|
...
|
|
}:
|
|
|
|
{
|
|
options = {
|
|
desktop.shell = {
|
|
noctalia.enable = lib.mkEnableOption "enable noctalia";
|
|
};
|
|
};
|
|
config.services.gnome.evolution-data-server.enable = true;
|
|
}
|