wallpaper
This commit is contained in:
parent
5708f39308
commit
a6f591f6e0
|
@ -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; };
|
||||
};
|
||||
});
|
||||
}
|
||||
|
|
|
@ -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
9
pkgs/wall.nix
Normal 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
BIN
resources/wallpaper.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.4 MiB |
Loading…
Reference in New Issue
Block a user