b6915ab988
- Updated host variables files to select Attack-on-Titan-2.jpg and added rating comments. - Simplified boot.nix by removing host‑specific imports and configuring limine via package, resolution, and branding color. - Added limine target support in stylix with color, image, and tile scaling options. - Removed the unused noctalia colors module and its import. - Adjusted noctalia wallpaper settings to use config.stylix.image instead of a host import.
20 lines
305 B
Nix
20 lines
305 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
|
|
./plugins.nix
|
|
];
|
|
}
|