11 lines
249 B
Nix
11 lines
249 B
Nix
{ user ? throw "user argument is required" }: { pkgs, ... }:
|
|
|
|
{
|
|
home-manager.users."${user.name}" = {
|
|
home = {
|
|
packages = with pkgs; [ rofi-wayland ];
|
|
persistence."/cache${user.home}".directories = [ ".cache/rofi" ];
|
|
};
|
|
};
|
|
}
|