9 lines
204 B
Nix
9 lines
204 B
Nix
{
|
|
user ? throw "user argument is required",
|
|
home ? throw "home argument is required",
|
|
}:
|
|
{ ... }:
|
|
{
|
|
home-manager.users.${user}.theme.wallpaper = ../../../../../../../static/wallpapers/clouds.png;
|
|
}
|