- Enable `calendar.enable` instead of `evolution.enable` in all host system‑modules files. - Add `modules/core/calendar.nix` defining the calendar option and installing GNOME Calendar and Contacts. - Remove the deprecated `modules/core/evolution.nix` and update `core/default.nix` imports accordingly. - Include the GNOME package set via `./gnome.nix` in `modules/core/packages/default.nix`.
32 lines
533 B
Nix
32 lines
533 B
Nix
{inputs, ...}: {
|
|
imports = [
|
|
./packages
|
|
./boot.nix
|
|
./calendar.nix
|
|
./docker.nix
|
|
./flatpak.nix
|
|
./fonts.nix
|
|
./garandos-tui.nix
|
|
./hardware.nix
|
|
./network.nix
|
|
./nfs.nix
|
|
./nh.nix
|
|
./printing.nix
|
|
./quickshell.nix
|
|
./greetd.nix
|
|
./security.nix
|
|
./services.nix
|
|
./steam.nix
|
|
./stylix.nix
|
|
./syncthing.nix
|
|
./system.nix
|
|
./tailscale.nix
|
|
./thunar.nix
|
|
./user.nix
|
|
./virtualbox.nix
|
|
./xdg.nix
|
|
./xserver.nix
|
|
inputs.stylix.nixosModules.stylix
|
|
];
|
|
}
|