1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00

modularize colorscheming and more

This commit is contained in:
Kierán Meinhardt
2019-04-19 15:02:05 +02:00
parent a763c63de4
commit 7d6dbc2809
37 changed files with 483 additions and 496 deletions

View File

@@ -27,12 +27,7 @@ let
url = https://cgit.krebsco.de/stockholm;
ref = "7e1b197dab13d024ba491c96dc959306324943c0";
};
nix-writers.git = {
url = https://cgit.krebsco.de/nix-writers;
ref = "c528cf970e292790b414b4c1c8c8e9d7e73b2a71";
};
system.file = toString path;
art.file = toString ./art;
lib.file = toString ./lib;
packages.file = toString ./packages;
systems.file = toString ./systems;
@@ -44,12 +39,18 @@ let
} // other)];
systems.scardanelli = pkgs.krops.writeDeploy "deploy-scardanelli" {
source = source { path = ./systems/scardanelli; };
source = source {
path = ./systems/scardanelli;
other.art.file = ./art;
};
target = scardanelli-ssh;
};
systems.homeros = pkgs.krops.writeDeploy "deploy-homeros" {
source = source { path = ./systems/homeros; };
source = source {
path = ./systems/homeros;
other.art.file = ./art;
};
target = homeros-ssh;
};