config.nix/home/desktop/shell/noctalia.nix

27 lines
342 B
Nix

{
config,
pkgs,
inputs,
lib,
osConfig,
...
}:
{
imports =
if true then
[
inputs.noctalia.homeModules.default
]
else
[ ];
config = {
programs.noctalia-shell =
if osConfig.desktop.shell.noctalia.enable then
{
enable = true;
}
else
{ };
};
}