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": { "locked": {
"lastModified": 1707825078, "lastModified": 1707825078,
"narHash": "sha256-hTfge2J2W+42SZ7VHXkf4kjU+qzFqPeC9k66jAUBMHk=", "narHash": "sha256-hTfge2J2W+42SZ7VHXkf4kjU+qzFqPeC9k66jAUBMHk=",
"owner": "misterio77", "owner": "itepastra",
"repo": "nix-colors", "repo": "nix-colors",
"rev": "b01f024090d2c4fc3152cd0cf12027a7b8453ba1", "rev": "b01f024090d2c4fc3152cd0cf12027a7b8453ba1",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "misterio77", "owner": "itepastra",
"repo": "nix-colors", "repo": "nix-colors",
"type": "github" "type": "github"
} }

View file

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

View file

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