Compare commits

..

No commits in common. "208baf5b5528d8613455c73c81211d2c7685958c" and "79ed3822d976fb410e9dc94acdcd7e0ef58f6f51" have entirely different histories.

3 changed files with 19 additions and 25 deletions

View file

@ -1,25 +1,22 @@
{...}: let {...}: let
mkProfiles = profiles: mkProfiles = profiles: builtins.listToAttrs (map (p: {
builtins.listToAttrs (map (p: { name = "librewolf-${p}";
name = "librewolf-${p}"; value = {
value = { exec = "librewolf -P ${p}";
exec = "librewolf -P ${p}"; icon = "librewolf";
icon = "librewolf"; name = "Librewolf (${p})";
name = "Librewolf (${p})"; mimeType = [
mimeType = [ "text/html"
"text/html" "text/xml"
"text/xml" "application/xhtml+xml"
"application/xhtml+xml" "x-scheme-handler/http"
"x-scheme-handler/http" "x-scheme-handler/https"
"x-scheme-handler/https" "application/x-xpinstall"
"application/x-xpinstall" "application/pdf"
"application/pdf" "application/json"
"application/json" ];
]; };
}; }) profiles); in {
})
profiles);
in {
xdg.desktopEntries = mkProfiles [ xdg.desktopEntries = mkProfiles [
"default" "default"
"personal" "personal"

View file

@ -3,8 +3,7 @@
lib, lib,
pkgs, pkgs,
... ...
}: }: lib.mkIf (config.networking.hostName != "komikan") {
lib.mkIf (config.networking.hostName != "komikan") {
environment.systemPackages = [pkgs.cifs-utils]; environment.systemPackages = [pkgs.cifs-utils];
security.wrappers."mount.cifs" = { security.wrappers."mount.cifs" = {
program = "mount.cifs"; program = "mount.cifs";

View file

@ -23,8 +23,6 @@ lib.mkIf config.u.has.prog {
patchelf patchelf
lazygit lazygit
pyp pyp
coq
coqPackages.coqide
] ]
++ lib.optionals config.u.has.graphical [ ++ lib.optionals config.u.has.graphical [
(cutter.withPlugins (ps: with ps; [jsdec rz-ghidra sigdb])) (cutter.withPlugins (ps: with ps; [jsdec rz-ghidra sigdb]))