refactor: fix nix formatting

This commit is contained in:
Felix Schröter 2022-01-01 02:13:02 +01:00
parent e02d84533d
commit 4e2f60294a
No known key found for this signature in database
GPG key ID: 910ACB9F6BD26F58
6 changed files with 45 additions and 62 deletions
home/browsers

View file

@ -121,12 +121,12 @@ in {
cp -r ${scriptBin}/bin/${name} $out/bin/${name}
cp -r ${desktopFile}/share/applications $out/share/applications
'';
in (with pkgs;
[ (tor-browser-bundle-bin.override { pulseaudioSupport = true; }) ]) ++ [
(makeFirefoxProfileBin {
profile = "work";
desktopName = "Firefox (Work)";
icon = "firefox";
})
];
in with pkgs; [
(tor-browser-bundle-bin.override { pulseaudioSupport = true; })
(makeFirefoxProfileBin {
profile = "work";
desktopName = "Firefox (Work)";
icon = "firefox";
})
];
}