f912025218
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.
21 lines
322 B
Nix
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
|
|
];
|
|
}
|