Renamed 'firefox-home' module to only 'home'

This commit is contained in:
2026-03-26 10:24:02 +01:00
parent 762bab2c0b
commit b341ca2c87
2 changed files with 1 additions and 1 deletions

17
modules/firefox/home.nix Normal file
View File

@ -0,0 +1,17 @@
{username, ...}: {
programs.firefox = {
enable = true;
profiles = {
"${username}" = {
extensions.force = true;
};
};
};
systemd.user.services."firefox-autostart" = {
serviceConfig = {
ExecStart = "";
ExecStop = "";
};
};
}