wallpaper

This commit is contained in:
Rachel Lambda Samuelsson 2024-06-25 16:01:07 +02:00
parent 5708f39308
commit a6f591f6e0
4 changed files with 13 additions and 2 deletions

View File

@ -64,6 +64,7 @@
pash = self.packages.${system}.pash;
cpypsk = self.packages.${system}.cpypsk;
renoise = self.packages.${system}.renoise;
wall = self.packages.${system}.wall;
};
};
};
@ -112,6 +113,7 @@
pash = import ./pkgs/pash.nix { inherit pkgs; };
cpypsk = import ./pkgs/cpypsk.nix { inherit pkgs pash; };
renoise = import ./pkgs/renoise.nix { inherit pkgs; };
wall = import ./pkgs/wall.nix { inherit pkgs; };
};
});
}

View File

@ -5,11 +5,11 @@
workspace = {
lookAndFeel = "org.kde.breezedark.desktop";
wallpaperPictureOfTheDay.provider = "simonstalenhag";
wallpaper = "${extra.wall}";
};
kscreenlocker = {
wallpaperPictureOfTheDay.provider = "simonstalenhag";
wallpaper = "${extra.wall}";
};
hotkeys.commands."launch-alacritty" = {

9
pkgs/wall.nix Normal file
View File

@ -0,0 +1,9 @@
{ pkgs, ... }:
pkgs.stdenv.mkDerivation {
name = "wallpaper";
src = ./..;
phases = [ "installPhase" ];
installPhase = ''
cp $src/resources/wallpaper.jpg $out
'';
}

BIN
resources/wallpaper.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB