mirror of
https://github.com/RGBCube/ncc
synced 2025-07-27 10:07:44 +00:00
9 lines
251 B
Nix
9 lines
251 B
Nix
{ lib, pkgs, ... }: let
|
|
inherit (lib) getExe readFile;
|
|
in {
|
|
# Yes, IFD. Deal with it.
|
|
environment.variables.LS_COLORS = readFile <|
|
|
pkgs.runCommand "ls_colors.txt" {} ''
|
|
${getExe pkgs.vivid} generate gruvbox-dark-hard > $out
|
|
'';
|
|
}
|