feat(homes/rafiq): add firefox and keep state persistent

This commit is contained in:
Mohammad Rafiq 2025-05-18 20:48:15 +08:00
parent 5f91ad83aa
commit 77eca02e1b
No known key found for this signature in database
2 changed files with 9 additions and 1 deletions

View file

@ -2,6 +2,7 @@
{
imports = [
./desktop/hyprland.nix
./desktop/firefox.nix
];
home.packages = with pkgs; [
kitty
@ -10,5 +11,4 @@ imports = [
TERMINAL = "kitty";
BROWSER = "firefox";
};
}

View file

@ -0,0 +1,8 @@
{
programs.firefox = {
enable = true;
profiles.rafiq.id = 0;
profiles.test.id = 1;
};
home.persistence."/persist/home/rafiq".directories = [ ".mozilla/firefox" ];
}