wpaperd: add wpaperd configuration
Signed-off-by: Avimitin <dev@avimit.in>
This commit is contained in:
parent
ae896c810f
commit
209a24dff2
8 changed files with 98 additions and 0 deletions
49
modules/programs/wpaperd.nix
Normal file
49
modules/programs/wpaperd.nix
Normal file
|
|
@ -0,0 +1,49 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
with lib;
|
||||
|
||||
let
|
||||
cfg = config.programs.wpaperd;
|
||||
tomlFormat = pkgs.formats.toml { };
|
||||
in {
|
||||
meta.maintainers = [ hm.maintainers.Avimitin ];
|
||||
|
||||
options.programs.wpaperd = {
|
||||
enable = mkEnableOption "wpaperd";
|
||||
|
||||
package = mkPackageOption pkgs "wpaperd" { };
|
||||
|
||||
settings = mkOption {
|
||||
type = tomlFormat.type;
|
||||
default = { };
|
||||
example = literalExpression ''
|
||||
{
|
||||
eDP-1 = {
|
||||
path = "/home/foo/Pictures/Wallpaper";
|
||||
apply-shadow = true;
|
||||
};
|
||||
DP-2 = {
|
||||
path = "/home/foo/Pictures/Anime";
|
||||
sorting = "descending";
|
||||
};
|
||||
}
|
||||
'';
|
||||
description = ''
|
||||
Configuration written to
|
||||
{file}`$XDG_CONFIG_HOME/wpaperd/wallpaper.toml`.
|
||||
See <https://github.com/danyspin97/wpaperd#wallpaper-configuration>
|
||||
for the full list of options.
|
||||
'';
|
||||
};
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
home.packages = [ cfg.package ];
|
||||
|
||||
xdg.configFile = {
|
||||
"wpaperd/wallpaper.toml" = mkIf (cfg.settings != { }) {
|
||||
source = tomlFormat.generate "wpaperd-wallpaper" cfg.settings;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue