many changes

This commit is contained in:
2024-07-02 23:03:24 +02:00
parent 972084cd65
commit 982a12ba08
13 changed files with 492 additions and 56 deletions

View File

@@ -1,11 +1,10 @@
{ pkgs, ... }:
let
socialDesktopItem = pkgs.makeDesktopItem {
name = "social";
desktopName = "Librewolf browser with social profile";
exec = "librewolf -P social";
desktopName = "Firefox browser with social profile";
exec = "firefox -P social";
};
in {
environment.systemPackages = [ socialDesktopItem ];