This commit is contained in:
cy 2025-02-09 14:40:12 -05:00
parent 5e877bd3d0
commit ee2baa3f19
Signed by: cy
SSH key fingerprint: SHA256:o/geVWV4om1QhUSkKvDQeW/eAihwnjyXkqMwrVdbuts
5 changed files with 31 additions and 18 deletions

View file

@ -115,11 +115,13 @@
sccache sccache
awscli2 awscli2
lldb lldb
(cutter.withPlugins (p: with p; [ (cutter.withPlugins (
p: with p; [
rz-ghidra rz-ghidra
jsdec jsdec
sigdb sigdb
])) ]
))
ida-free ida-free
patchelf patchelf
radare2 radare2

View file

@ -337,7 +337,10 @@
enable = true; enable = true;
wlr.enable = true; wlr.enable = true;
xdgOpenUsePortal = true; xdgOpenUsePortal = true;
extraPortals = with pkgs; [ xdg-desktop-portal-gtk xdg-desktop-portal-gnome ]; extraPortals = with pkgs; [
xdg-desktop-portal-gtk
xdg-desktop-portal-gnome
];
}; };
programs.obs-studio = { programs.obs-studio = {

View file

@ -1,4 +1,9 @@
{ config, lib, pkgs, ... }: {
config,
lib,
pkgs,
...
}:
let let
cfg = config.my.roundcube; cfg = config.my.roundcube;
fpm = config.services.phpfpm.pools.roundcube; fpm = config.services.phpfpm.pools.roundcube;
@ -13,12 +18,14 @@ in
services.roundcube = { services.roundcube = {
enable = true; enable = true;
configureNginx = false; configureNginx = false;
package = pkgs.roundcube.withPlugins (p: with p; [ package = pkgs.roundcube.withPlugins (
p: with p; [
persistent_login persistent_login
contextmenu contextmenu
custom_from custom_from
thunderbird_labels thunderbird_labels
]); ]
);
plugins = [ plugins = [
"persistent_login" "persistent_login"
"contextmenu" "contextmenu"

View file

@ -1,4 +1,5 @@
{ inputs }: let { inputs }:
let
overlays = [ overlays = [
./conduwuit ./conduwuit
./attic ./attic
@ -7,9 +8,9 @@
importedOverlays = map (m: import m) overlays; importedOverlays = map (m: import m) overlays;
in in
importedOverlays importedOverlays
++ ++ [
[ (
(final: prev: final: prev:
let let
pkgFrom = flake: pkg: flake.legacyPackages.${prev.system}.${pkg}; pkgFrom = flake: pkg: flake.legacyPackages.${prev.system}.${pkg};
stable = inputs.nixpkgs-stable; stable = inputs.nixpkgs-stable;