1
0
Fork 0
mirror of https://git.sr.ht/~roxwize/.dotfiles synced 2025-07-01 14:26:00 +00:00
.dotfiles/nixos/modules/system/home.nix
roxwize 146a2de0ec
~
Signed-off-by: roxwize <rae@roxwize.xyz>
2025-06-23 15:28:25 -04:00

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 = {
};
}