nixos

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

default.nix (567B)


      1 {
      2 	config,
      3 	pkgs,
      4 	...
      5 }: {
      6 	boot.loader.limine = {
      7 		enable = true;
      8 		efiSupport = true;
      9 		style = {
     10 			graphicalTerminal = {
     11 				background = "ffffffff";
     12 				brightBackground = "585b70";
     13 				foreground = "cdd6f4";
     14 				brightForeground = "cdd6f4";
     15 				palette = "1e1e2e;f38ba8;a6e3a1;f9e2af;89b4fa;f5c2e7;94e2d5;cdd6f4";
     16 				brightPalette = "585b70;f38ba8;a6e3a1;f9e2af;89b4fa;f5c2e7;94e2d5;cdd6f4";
     17 			};
     18 			wallpapers = [pkgs.nixos-artwork.wallpapers."nineish-catppuccin-${config.catppuccin.flavor}-alt".kdeFilePath];
     19 		};
     20 	};
     21 	catppuccin.limine.enable = false;
     22 }