12 lines
183 B
Nix
12 lines
183 B
Nix
{
|
|
user ? throw "user argument is required",
|
|
home ? throw "home argument is required",
|
|
}:
|
|
{ ... }:
|
|
{
|
|
home-manager.users.${user}.theme = {
|
|
padding = 0;
|
|
radius = 0;
|
|
};
|
|
}
|