Skip to content

Commit

Permalink
⚡ wallpaper option
Browse files Browse the repository at this point in the history
  • Loading branch information
elythh committed Jan 8, 2024
1 parent eda8d89 commit 8da069d
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions home/gwen/misc/wallpaper.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{ pkgs, lib, ... }:
let
inherit (lib) types mkOption;
in
{
options.wallpaper = mkOption {
type = types.path;
default = "${pkgs.nixos-artwork.wallpapers.nineish-dark-gray}/share/backgrounds/nixos/nix-wallpaper-nineish-dark-gray.png";
description = ''
Wallpaper path
'';
};
}

0 comments on commit 8da069d

Please sign in to comment.