Compare commits
No commits in common. "208baf5b5528d8613455c73c81211d2c7685958c" and "79ed3822d976fb410e9dc94acdcd7e0ef58f6f51" have entirely different histories.
208baf5b55
...
79ed3822d9
|
|
@ -1,6 +1,5 @@
|
||||||
{...}: 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}";
|
||||||
|
|
@ -17,9 +16,7 @@
|
||||||
"application/json"
|
"application/json"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
})
|
}) profiles); in {
|
||||||
profiles);
|
|
||||||
in {
|
|
||||||
xdg.desktopEntries = mkProfiles [
|
xdg.desktopEntries = mkProfiles [
|
||||||
"default"
|
"default"
|
||||||
"personal"
|
"personal"
|
||||||
|
|
|
||||||
|
|
@ -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";
|
||||||
|
|
|
||||||
|
|
@ -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]))
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue