12 lines
135 B
Nix
12 lines
135 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
username,
|
|
...
|
|
}: {
|
|
programs.firefox = {
|
|
enable = true;
|
|
profiles.${username} = {};
|
|
};
|
|
}
|