1
0
Fork 0
mirror of https://git.sr.ht/~roxwize/.dotfiles synced 2025-07-08 17:08:30 +00:00
.dotfiles/nixos/modules/system/home.nix
2025-07-07 20:15:08 -04:00

19 lines
311 B
Nix

# TODO unimplemented
{ pkgs, config, lib, ... }: let
cfg = config.r5e.home;
in with lib; {
options.r5e.user = mkOption {
type = types.attrsOf {
wallpaper = mkOption {
type = types.str;
default = /home/rae/.dotfiles/assets/wallpapers/current;
};
};
default = {};
};
config = {
};
}