me like nix
0

Configure Feed

Select the types of activity you want to include in your feed.

Stop Noctalia editing Alacritty config

author
Sean Aye
date (Jun 15, 2026, 10:56 PM -0400) commit a2534ee0 parent d9d555ab change-id wwypsktx
+72 -1
+72 -1
modules/desktop.nix
··· 388 388 builtin = "Catppuccin"; 389 389 templates = { 390 390 enable_builtin_templates = true; 391 - builtin_ids = [ "alacritty" ]; 391 + user.alacritty = { 392 + input_path = "templates/alacritty.toml"; 393 + output_path = "$XDG_CONFIG_HOME/alacritty/themes/noctalia.toml"; 394 + }; 392 395 }; 393 396 }; 394 397 wallpaper = { ··· 403 406 }; 404 407 }; 405 408 }; 409 + 410 + xdg.configFile."noctalia/templates/alacritty.toml".text = '' 411 + [colors.primary] 412 + background = '{{colors.terminal_background.default.hex}}' 413 + foreground = '{{colors.terminal_foreground.default.hex}}' 414 + 415 + [colors.cursor] 416 + text = '{{colors.terminal_cursor_text.default.hex}}' 417 + cursor = '{{colors.terminal_cursor.default.hex}}' 418 + 419 + [colors.vi_mode_cursor] 420 + text = '{{colors.background.default.hex}}' 421 + cursor = '{{colors.primary.default.hex}}' 422 + 423 + [colors.search.matches] 424 + foreground = '{{colors.surface_variant.default.hex}}' 425 + background = '{{colors.tertiary.default.hex}}' 426 + 427 + [colors.search.focused_match] 428 + foreground = '{{colors.surface_variant.default.hex}}' 429 + background = '{{colors.primary.default.hex}}' 430 + 431 + [colors.footer_bar] 432 + foreground = '{{colors.surface_variant.default.hex}}' 433 + background = '{{colors.inverse_surface.default.hex}}' 434 + 435 + [colors.hints.start] 436 + foreground = '{{colors.surface_variant.default.hex}}' 437 + background = '{{colors.secondary.default.hex}}' 438 + 439 + [colors.hints.end] 440 + foreground = '{{colors.surface_variant.default.hex}}' 441 + background = '{{colors.secondary.default.hex}}' 442 + 443 + [colors.selection] 444 + text = '{{colors.terminal_selection_fg.default.hex}}' 445 + background = '{{colors.terminal_selection_bg.default.hex}}' 446 + 447 + [colors.normal] 448 + black = '{{colors.terminal_normal_black.default.hex}}' 449 + red = '{{colors.terminal_normal_red.default.hex}}' 450 + green = '{{colors.terminal_normal_green.default.hex}}' 451 + yellow = '{{colors.terminal_normal_yellow.default.hex}}' 452 + blue = '{{colors.terminal_normal_blue.default.hex}}' 453 + magenta = '{{colors.terminal_normal_magenta.default.hex}}' 454 + cyan = '{{colors.terminal_normal_cyan.default.hex}}' 455 + white = '{{colors.terminal_normal_white.default.hex}}' 456 + 457 + [colors.bright] 458 + black = '{{colors.terminal_bright_black.default.hex}}' 459 + red = '{{colors.terminal_bright_red.default.hex}}' 460 + green = '{{colors.terminal_bright_green.default.hex}}' 461 + yellow = '{{colors.terminal_bright_yellow.default.hex}}' 462 + blue = '{{colors.terminal_bright_blue.default.hex}}' 463 + magenta = '{{colors.terminal_bright_magenta.default.hex}}' 464 + cyan = '{{colors.terminal_bright_cyan.default.hex}}' 465 + white = '{{colors.terminal_bright_white.default.hex}}' 466 + 467 + [colors.dim] 468 + black = '{{colors.terminal_normal_black.default.hex}}' 469 + red = '{{colors.terminal_normal_red.default.hex}}' 470 + green = '{{colors.terminal_normal_green.default.hex}}' 471 + yellow = '{{colors.terminal_normal_yellow.default.hex}}' 472 + blue = '{{colors.terminal_normal_blue.default.hex}}' 473 + magenta = '{{colors.terminal_normal_magenta.default.hex}}' 474 + cyan = '{{colors.terminal_normal_cyan.default.hex}}' 475 + white = '{{colors.terminal_normal_white.default.hex}}' 476 + ''; 406 477 407 478 # Wallpaper downloads 408 479 home.activation.downloadWallpapers =