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

4
flake.lock generated
View file

@ -489,13 +489,13 @@
"locked": {
"lastModified": 1707825078,
"narHash": "sha256-hTfge2J2W+42SZ7VHXkf4kjU+qzFqPeC9k66jAUBMHk=",
"owner": "misterio77",
"owner": "itepastra",
"repo": "nix-colors",
"rev": "b01f024090d2c4fc3152cd0cf12027a7b8453ba1",
"type": "github"
},
"original": {
"owner": "misterio77",
"owner": "itepastra",
"repo": "nix-colors",
"type": "github"
}

View file

@ -6,7 +6,7 @@
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable-small";
nix-colors = {
url = "github:misterio77/nix-colors";
url = "github:itepastra/nix-colors";
};
home-manager = {

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 {