images to seperate repo
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
let
|
||||
images = pkgs.callPackage ./home/themes/images { };
|
||||
images = pkgs.callPackage ./home/themes/images.nix { };
|
||||
in
|
||||
{
|
||||
# Importing necessary setup for Steam & Printing & Flutter.
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
}:
|
||||
|
||||
let
|
||||
images = pkgs.callPackage ../images { };
|
||||
images = pkgs.callPackage ../images.nix { };
|
||||
in
|
||||
{
|
||||
imports = [
|
||||
|
||||
@@ -12,7 +12,7 @@ let
|
||||
yellow = "rgb(f9e2af)";
|
||||
font = "Fira Code";
|
||||
};
|
||||
images = pkgs.callPackage ../images { };
|
||||
images = pkgs.callPackage ../images.nix { };
|
||||
in
|
||||
{
|
||||
# ── Hyprlock ──────────────────────────────────────────────────────────
|
||||
@@ -23,6 +23,8 @@ in
|
||||
ignore_empty_input = true;
|
||||
};
|
||||
|
||||
animations.enabled = false;
|
||||
|
||||
background = {
|
||||
monitor = "";
|
||||
path = "${images.lock}";
|
||||
|
||||
16
home/themes/images.nix
Normal file
16
home/themes/images.nix
Normal 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";
|
||||
};
|
||||
}
|
||||
@@ -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 |
@@ -1,7 +1,7 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
let
|
||||
images = pkgs.callPackage ./images { };
|
||||
images = pkgs.callPackage ./images.nix { };
|
||||
in
|
||||
{
|
||||
services.wpaperd = {
|
||||
|
||||
Reference in New Issue
Block a user