Files
nixos/hosts/nb/modules/desktop/social.nix

15 lines
345 B
Nix

{ pkgs, ... }:
let
socialDesktopItem = pkgs.makeDesktopItem {
name = "social";
desktopName = "Firefox browser with social profile";
exec = "firefox -P social";
# exec= "firefox -P social --marionette --remote-debugging-port 2828 --no-remote";
};
in {
environment.systemPackages = with pkgs; [
socialDesktopItem
];
}