26 lines
368 B
Nix
26 lines
368 B
Nix
{
|
|
pkgs,
|
|
inputs,
|
|
lib,
|
|
config,
|
|
...
|
|
}:
|
|
|
|
{
|
|
options = {
|
|
desktop.shell = {
|
|
noctalia.enable = lib.mkEnableOption "enable noctalia";
|
|
};
|
|
};
|
|
config = {
|
|
environment.systemPackages =
|
|
if config.desktop.shell.noctalia.enable then
|
|
with pkgs;
|
|
[
|
|
evtest
|
|
gnome-calendar
|
|
]
|
|
else
|
|
[ ];
|
|
};
|
|
}
|