theme: anemone -> DeepThought

This commit is contained in:
2023-11-15 16:43:50 +01:00
parent aacdd3b2cc
commit 2383c813c1
3 changed files with 29 additions and 4 deletions
+8 -2
View File
@@ -5,10 +5,16 @@
flake = false;
};
inputs.theme_deepthought = {
url = "github:RatanShreshtha/DeepThought";
flake = false;
};
outputs = {
self,
nixpkgs,
theme_anemone,
theme_deepthought,
}: let
supportedSystems = ["x86_64-linux" "aarch64-linux"];
forAllSystems = nixpkgs.lib.genAttrs supportedSystems;
@@ -16,7 +22,7 @@
url_deploy = "https://project-cloud.net";
url_local = "http://localhost:8080";
name = "project-cloud";
theme = theme_anemone;
theme = theme_deepthought;
package = system: url:
pkgs.${system}.stdenv.mkDerivation {
inherit name;
@@ -26,7 +32,7 @@
submodules = true;
buildPhase = ''
ln -s ${theme} themes/anemone
ln -s ${theme} themes/DeepThought
zola build -u ${url}
'';