this actually might be it

This commit is contained in:
caem 2025-01-25 03:02:40 +01:00
parent 5541426fd0
commit 906495daf0
Signed by: caem
GPG key ID: 69A830D03203405F
5 changed files with 87 additions and 90 deletions

View file

@ -0,0 +1,14 @@
{ username, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
tor-browser
firefox-esr
];
environment.persistence."/nix/config" = {
users."${username}".directories = [
".config/mozilla"
];
};
}