mirror of
https://git.sr.ht/~roxwize/.dotfiles
synced 2025-07-01 14:26:00 +00:00
19 lines
311 B
Nix
19 lines
311 B
Nix
# TODO unimplemented
|
|
{ pkgs, config, lib, ... }: let
|
|
cfg = config.r5e.home;
|
|
in with lib; {
|
|
options.r5e.home = mkOption {
|
|
type = types.attrsOf {
|
|
wallpaper = mkOption {
|
|
type = types.str;
|
|
default = /home/rae/.dotfiles/assets/wallpapers/current;
|
|
};
|
|
};
|
|
default = {};
|
|
};
|
|
|
|
config = {
|
|
|
|
};
|
|
}
|
|
|