nixos-config/configurations/firefox.nix
Charlotte Van Petegem cfb48de40c Reorganize for zfs
2020-05-23 09:59:32 +02:00

10 lines
236 B
Nix

{ ... }: {
home-manager.users.charlotte = { pkgs, ... }: {
home.packages = with pkgs; [ firefox ];
};
custom.zfs.homeLinks = [
{ path = ".cache/mozilla"; type = "cache"; }
{ path = ".mozilla"; type = "data"; }
];
}