Updated wallpapers

This commit is contained in:
2025-12-15 23:44:33 -05:00
parent 38a6c622f7
commit 51deed6aa6
6 changed files with 9 additions and 4 deletions

View File

@@ -67,6 +67,7 @@
specialArgs = {
inherit inputs;
host = "vanta";
wallpaper = "twilight-village.png";
};
modules = [
./modules/system

View File

@@ -1,5 +1,6 @@
{
config,
wallpaper,
...
}:
let
@@ -19,7 +20,7 @@ in
};
background = [
{
path = "${config.xdg.userDirs.extraConfig.XDG_WALLPAPERS_DIR}/sunset_bay.jpg";
path = "${config.xdg.userDirs.extraConfig.XDG_WALLPAPERS_DIR}/${wallpaper}";
blur_passes = 3;
}
];

View File

@@ -1,5 +1,6 @@
{
config,
wallpaper,
...
}:
let
@@ -18,7 +19,7 @@ in
mode = "center";
};
any = {
path = "${wallpapers}/sunset_bay.jpg";
path = "${wallpapers}/${wallpaper}";
};
};
};

View File

@@ -1,6 +1,7 @@
{
config,
pkgs,
wallpaper,
...
}:
{
@@ -56,7 +57,7 @@
}
window {
background: url("${config.xdg.userDirs.extraConfig.XDG_WALLPAPERS_DIR}/sunset_bay.jpg");
background: url("${config.xdg.userDirs.extraConfig.XDG_WALLPAPERS_DIR}/${wallpaper}");
background-size: cover;
}

View File

@@ -2,6 +2,7 @@
inputs,
pkgs,
host,
wallpaper,
config,
...
}:
@@ -11,7 +12,7 @@
home-manager = {
useUserPackages = true;
useGlobalPkgs = true;
extraSpecialArgs = { inherit inputs host; };
extraSpecialArgs = { inherit inputs host wallpaper; };
users.eclypse = {
imports = [ ../home ];

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.0 MiB