Compare commits

...

2 commits

Author SHA1 Message Date
caandt 208baf5b55 the return of coq 2025-03-10 01:48:14 -05:00
caandt 21add68cc1 formatting 2025-03-07 23:56:27 -06:00
3 changed files with 25 additions and 19 deletions

View file

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

View file

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

View file

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