noctalia plugins and stuff

This commit is contained in:
martyTF 2026-04-19 17:05:02 +02:00
parent 34dd048981
commit 4f4f98da70
4 changed files with 137 additions and 0 deletions

View file

@ -12,4 +12,14 @@
noctalia.enable = lib.mkEnableOption "enable noctalia";
};
};
config = {
environment.systemPackages =
if config.desktop.shell.noctalia.enable then
with pkgs;
[
evtest
]
else
[ ];
};
}