use nix-colors fork

This commit is contained in:
Noa Aarts 2024-06-18 14:51:42 +02:00
parent 124ec70fe1
commit 20dd891399
3 changed files with 6 additions and 6 deletions

View file

@ -15,15 +15,15 @@ in
description = "the shader executed to get the state for the initialisation, and re-initialisation steps";
};
state = lib.mkOption {
type = str; # TODO: make filepath possible as well
type = str;
description = "the shader executed to increment the state to the next generation";
};
display = lib.mkOption {
type = str; # TODO: make filepath possible as well
type = str;
description = "the shader executed to display the state to the monitor";
};
horizontal = lib.mkOption {
type = int; # TODO: make filepath possible as well
type = int;
description = "the amount of horizontal cells in the state";
};
vertical = lib.mkOption {