moved wallpapers to another repo
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
{ pkgs }:
|
||||
{ pkgs, inputs }:
|
||||
let
|
||||
inherit (inputs) wallpapers;
|
||||
mkScheme =
|
||||
{
|
||||
color ? null,
|
||||
@@ -26,12 +27,12 @@ in
|
||||
name = "mocha";
|
||||
color = "brown";
|
||||
polarity = "dark";
|
||||
image = ../wallpapers/la_fragua_de_vulcano.jpg;
|
||||
image = "${wallpapers}/la_fragua_de_vulcano.jpg";
|
||||
};
|
||||
who = mkScheme {
|
||||
name = "catppuccin-frappe";
|
||||
polarity = "dark";
|
||||
image = ../wallpapers/Nikolay_Kasatkin_Who.jpeg;
|
||||
image = "${wallpapers}/Nikolay_Kasatkin_Who.jpeg";
|
||||
iconPackage = pkgs.catppuccin-papirus-folders.override {
|
||||
flavor = "frappe";
|
||||
accent = "peach";
|
||||
@@ -41,25 +42,25 @@ in
|
||||
name = "solarflare";
|
||||
color = "darkcyan";
|
||||
polarity = "dark";
|
||||
image = ../wallpapers/space.jpg;
|
||||
image = "${wallpapers}/space.jpg";
|
||||
};
|
||||
jesus = mkScheme {
|
||||
color = "red";
|
||||
name = "equilibrium-light";
|
||||
polarity = "light";
|
||||
image = ../wallpapers/jesus.png;
|
||||
image = "${wallpapers}/jesus.png";
|
||||
};
|
||||
ballerinas = mkScheme {
|
||||
color = "brown";
|
||||
name = "mocha";
|
||||
polarity = "dark";
|
||||
image = ../wallpapers/Waay-Ballerinas.jpeg;
|
||||
image = "${wallpapers}/Waay-Ballerinas.jpeg";
|
||||
};
|
||||
paul = mkScheme {
|
||||
color = "green";
|
||||
name = "valua";
|
||||
polarity = "light";
|
||||
image = ../wallpapers/paul1.jpg;
|
||||
image = "${wallpapers}/paul1.jpg";
|
||||
base16Scheme = {
|
||||
base00 = "#1a1f16"; # dark forest floor (was deep green-black)
|
||||
base01 = "#23291a"; # bark shadow
|
||||
@@ -83,7 +84,7 @@ in
|
||||
color = "yellow";
|
||||
name = "equilibrium-light";
|
||||
polarity = "light";
|
||||
image = ../wallpapers/cheems.png;
|
||||
image = "${wallpapers}/cheems.png";
|
||||
base16Scheme = {
|
||||
base00 = "#f5f0e9"; # very light cream
|
||||
base01 = "#e8ddd4"; # light beige
|
||||
|
||||
@@ -2,10 +2,13 @@
|
||||
pkgs,
|
||||
lib,
|
||||
config,
|
||||
inputs,
|
||||
...
|
||||
}:
|
||||
let
|
||||
schemesFile = import ./schemes.nix { inherit pkgs; };
|
||||
schemesFile = import ./schemes.nix {
|
||||
inherit pkgs inputs;
|
||||
};
|
||||
scheme = schemesFile.schemes.cheems;
|
||||
cfg = config.my.stylix;
|
||||
in
|
||||
|
||||
Reference in New Issue
Block a user