images to seperate repo

This commit is contained in:
2026-03-20 11:34:52 +01:00
parent 9fc14abee9
commit a90ce8dfa1
9 changed files with 22 additions and 20 deletions

View File

@@ -1,7 +1,7 @@
{ pkgs, ... }: { pkgs, ... }:
let let
images = pkgs.callPackage ./home/themes/images { }; images = pkgs.callPackage ./home/themes/images.nix { };
in in
{ {
# Importing necessary setup for Steam & Printing & Flutter. # Importing necessary setup for Steam & Printing & Flutter.

View File

@@ -4,7 +4,7 @@
}: }:
let let
images = pkgs.callPackage ../images { }; images = pkgs.callPackage ../images.nix { };
in in
{ {
imports = [ imports = [

View File

@@ -12,7 +12,7 @@ let
yellow = "rgb(f9e2af)"; yellow = "rgb(f9e2af)";
font = "Fira Code"; font = "Fira Code";
}; };
images = pkgs.callPackage ../images { }; images = pkgs.callPackage ../images.nix { };
in in
{ {
# ── Hyprlock ────────────────────────────────────────────────────────── # ── Hyprlock ──────────────────────────────────────────────────────────
@@ -23,6 +23,8 @@ in
ignore_empty_input = true; ignore_empty_input = true;
}; };
animations.enabled = false;
background = { background = {
monitor = ""; monitor = "";
path = "${images.lock}"; path = "${images.lock}";

16
home/themes/images.nix Normal file
View File

@@ -0,0 +1,16 @@
{ ... }:
{
lock = builtins.fetchurl {
url = "https://github.com/4Lost/nixos-images/raw/refs/heads/main/lockpaper.png";
sha256 = "sha256:1a5yd20yrxi6h5ni4wwjwzgkkssw7bmiaj92g9ip2q5d1bgjq790";
};
face = builtins.fetchurl {
url = "https://github.com/4Lost/nixos-images/raw/refs/heads/main/face.icon";
sha256 = "sha256:1c1qxx7vbmyz244qryk96izsa2r5zlhrzkrsjixk4ds0zzah92ms";
};
background = builtins.fetchurl {
url = "https://github.com/4Lost/nixos-images/raw/refs/heads/main/wallpaper.jpeg";
sha256 = "sha256:0hgnjwfdhkkhlnpglm15z52w7hdhpbp7sn3s5qvldng86lmzj6fz";
};
}

View File

@@ -1,16 +0,0 @@
{ ... }:
{
lock = builtins.path {
path = ./lockpaper.png;
name = "lockpaper";
};
face = builtins.path {
path = ./face.icon;
name = "face";
};
background = builtins.path {
path = ./wallpaper.jpeg;
name = "wallpaper";
};
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 33 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 67 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.0 MiB

View File

@@ -1,7 +1,7 @@
{ pkgs, ... }: { pkgs, ... }:
let let
images = pkgs.callPackage ./images { }; images = pkgs.callPackage ./images.nix { };
in in
{ {
services.wpaperd = { services.wpaperd = {