Files
garandos/modules/home/noctalia/default.nix
T
GarandPLG f912025218 Refresh flake.lock and disable unused services
Add new inputs `crane` and `fenix` to the flake and update lock hashes
for many
dependencies. Disable remote‑server for Zed, ChatGPT, VirtualBox,
Exercism, and Logisim‑Evolution in host configurations. Add
`noctalia-shell`
to Hyprland exec‑once and remove systemd enable in the noctalia module.
2026-04-21 01:02:38 +02:00

21 lines
322 B
Nix

{
# lib,
inputs,
system,
...
}: {
programs.noctalia-shell = {
enable = true;
package = inputs.noctalia.packages.${system}.default.override {
calendarSupport = true;
};
# settings.settingsVersion = lib.mkForce 46;
};
imports = [
./settings
./colors.nix
./plugins.nix
];
}