feat(wallpaper): add better wallpaper module
This commit is contained in:
parent
326b14d39a
commit
3e9468d872
8 changed files with 99 additions and 23 deletions
24
modules/programs/wallpaper/default.nix
Normal file
24
modules/programs/wallpaper/default.nix
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
{ lib, config, pkgs, ... }:
|
||||
|
||||
|
||||
with lib;
|
||||
let
|
||||
cfg = config.my.programs.wallpaper;
|
||||
in
|
||||
{
|
||||
options.my.programs.wallpaper.enable = mkEnableOption "wallpaper";
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
environment.systemPackages =
|
||||
let
|
||||
wallpaper = pkgs.writeShellApplication {
|
||||
name = "wallpaper";
|
||||
runtimeInputs = with pkgs; [ findutils coreutils feh hyprland jq fzf viu ];
|
||||
text = builtins.readFile ./wallpaper.sh;
|
||||
};
|
||||
in
|
||||
[
|
||||
wallpaper
|
||||
];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue