Added comma + nix index database. Removed unused flake input

This commit is contained in:
Jurn Wubben 2025-08-16 18:04:30 +02:00
parent c72a7daeb0
commit 0c7cddcfb9
4 changed files with 40 additions and 18 deletions

13
system/desktop/comma.nix Normal file
View file

@ -0,0 +1,13 @@
{
config,
lib,
...
}: {
programs =
lib.mkIf config.niksos.desktop.enable
{
command-not-found.enable = false;
nix-index.enable = true;
nix-index-database.comma.enable = true;
};
}