moved wallpapers to another repo

This commit is contained in:
Danilo Reyes 2025-09-28 21:53:14 -06:00
parent b099248489
commit 679f51e6da
5 changed files with 38 additions and 14 deletions

View File

@ -1,5 +1,6 @@
{ pkgs }: { pkgs, inputs }:
let let
inherit (inputs) wallpapers;
mkScheme = mkScheme =
{ {
color ? null, color ? null,
@ -26,12 +27,12 @@ in
name = "mocha"; name = "mocha";
color = "brown"; color = "brown";
polarity = "dark"; polarity = "dark";
image = ../wallpapers/la_fragua_de_vulcano.jpg; image = "${wallpapers}/la_fragua_de_vulcano.jpg";
}; };
who = mkScheme { who = mkScheme {
name = "catppuccin-frappe"; name = "catppuccin-frappe";
polarity = "dark"; polarity = "dark";
image = ../wallpapers/Nikolay_Kasatkin_Who.jpeg; image = "${wallpapers}/Nikolay_Kasatkin_Who.jpeg";
iconPackage = pkgs.catppuccin-papirus-folders.override { iconPackage = pkgs.catppuccin-papirus-folders.override {
flavor = "frappe"; flavor = "frappe";
accent = "peach"; accent = "peach";
@ -41,25 +42,25 @@ in
name = "solarflare"; name = "solarflare";
color = "darkcyan"; color = "darkcyan";
polarity = "dark"; polarity = "dark";
image = ../wallpapers/space.jpg; image = "${wallpapers}/space.jpg";
}; };
jesus = mkScheme { jesus = mkScheme {
color = "red"; color = "red";
name = "equilibrium-light"; name = "equilibrium-light";
polarity = "light"; polarity = "light";
image = ../wallpapers/jesus.png; image = "${wallpapers}/jesus.png";
}; };
ballerinas = mkScheme { ballerinas = mkScheme {
color = "brown"; color = "brown";
name = "mocha"; name = "mocha";
polarity = "dark"; polarity = "dark";
image = ../wallpapers/Waay-Ballerinas.jpeg; image = "${wallpapers}/Waay-Ballerinas.jpeg";
}; };
paul = mkScheme { paul = mkScheme {
color = "green"; color = "green";
name = "valua"; name = "valua";
polarity = "light"; polarity = "light";
image = ../wallpapers/paul1.jpg; image = "${wallpapers}/paul1.jpg";
base16Scheme = { base16Scheme = {
base00 = "#1a1f16"; # dark forest floor (was deep green-black) base00 = "#1a1f16"; # dark forest floor (was deep green-black)
base01 = "#23291a"; # bark shadow base01 = "#23291a"; # bark shadow
@ -83,7 +84,7 @@ in
color = "yellow"; color = "yellow";
name = "equilibrium-light"; name = "equilibrium-light";
polarity = "light"; polarity = "light";
image = ../wallpapers/cheems.png; image = "${wallpapers}/cheems.png";
base16Scheme = { base16Scheme = {
base00 = "#f5f0e9"; # very light cream base00 = "#f5f0e9"; # very light cream
base01 = "#e8ddd4"; # light beige base01 = "#e8ddd4"; # light beige

View File

@ -2,10 +2,13 @@
pkgs, pkgs,
lib, lib,
config, config,
inputs,
... ...
}: }:
let let
schemesFile = import ./schemes.nix { inherit pkgs; }; schemesFile = import ./schemes.nix {
inherit pkgs inputs;
};
scheme = schemesFile.schemes.cheems; scheme = schemesFile.schemes.cheems;
cfg = config.my.stylix; cfg = config.my.stylix;
in in

View File

@ -1,5 +1,4 @@
{ {
inputs,
pkgs, pkgs,
... ...
}: }:

23
flake.lock generated
View File

@ -655,11 +655,11 @@
"rev": "64a81ca78d03816ddcbbdc8a7b6186c975c6653a", "rev": "64a81ca78d03816ddcbbdc8a7b6186c975c6653a",
"revCount": 104, "revCount": 104,
"type": "git", "type": "git",
"url": "https://git.servidos.lat/lebubu/scripts.git" "url": "https://git.servidos.lat/jawz/scripts.git"
}, },
"original": { "original": {
"type": "git", "type": "git",
"url": "https://git.servidos.lat/lebubu/scripts.git" "url": "https://git.servidos.lat/jawz/scripts.git"
} }
}, },
"nix-gaming": { "nix-gaming": {
@ -922,7 +922,8 @@
"nur": "nur", "nur": "nur",
"sops-nix": "sops-nix", "sops-nix": "sops-nix",
"stylix": "stylix", "stylix": "stylix",
"ucodenix": "ucodenix" "ucodenix": "ucodenix",
"wallpapers": "wallpapers"
} }
}, },
"sops-nix": { "sops-nix": {
@ -1178,6 +1179,22 @@
"type": "github" "type": "github"
} }
}, },
"wallpapers": {
"flake": false,
"locked": {
"lastModified": 1759117171,
"narHash": "sha256-Oyp4MKcld+tlZISm2HvuRErgHUb2mztpOH6v3g8B9uA=",
"ref": "refs/heads/main",
"rev": "0bc27e282a4c13d43139c4794e80a5951e4787b8",
"revCount": 1,
"type": "git",
"url": "https://git.servidos.lat/jawz/wallpapers.git"
},
"original": {
"type": "git",
"url": "https://git.servidos.lat/jawz/wallpapers.git"
}
},
"xdph": { "xdph": {
"inputs": { "inputs": {
"hyprland-protocols": [ "hyprland-protocols": [

View File

@ -10,9 +10,13 @@
inputs.nixpkgs.follows = ""; inputs.nixpkgs.follows = "";
}; };
jawz-scripts = { jawz-scripts = {
url = "git+https://git.servidos.lat/lebubu/scripts.git"; url = "git+https://git.servidos.lat/jawz/scripts.git";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
wallpapers = {
url = "git+https://git.servidos.lat/jawz/wallpapers.git";
flake = false;
};
nur = { nur = {
url = "github:nix-community/nur"; url = "github:nix-community/nur";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";