nix fmt
This commit is contained in:
parent
5e877bd3d0
commit
ee2baa3f19
5 changed files with 31 additions and 18 deletions
|
@ -112,4 +112,4 @@ creation_rules:
|
||||||
key_groups:
|
key_groups:
|
||||||
- age:
|
- age:
|
||||||
- *yt
|
- *yt
|
||||||
- *cy
|
- *cy
|
||||||
|
|
|
@ -115,11 +115,13 @@
|
||||||
sccache
|
sccache
|
||||||
awscli2
|
awscli2
|
||||||
lldb
|
lldb
|
||||||
(cutter.withPlugins (p: with p; [
|
(cutter.withPlugins (
|
||||||
rz-ghidra
|
p: with p; [
|
||||||
jsdec
|
rz-ghidra
|
||||||
sigdb
|
jsdec
|
||||||
]))
|
sigdb
|
||||||
|
]
|
||||||
|
))
|
||||||
ida-free
|
ida-free
|
||||||
patchelf
|
patchelf
|
||||||
radare2
|
radare2
|
||||||
|
|
|
@ -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 = {
|
||||||
|
|
|
@ -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 (
|
||||||
persistent_login
|
p: with p; [
|
||||||
contextmenu
|
persistent_login
|
||||||
custom_from
|
contextmenu
|
||||||
thunderbird_labels
|
custom_from
|
||||||
]);
|
thunderbird_labels
|
||||||
|
]
|
||||||
|
);
|
||||||
plugins = [
|
plugins = [
|
||||||
"persistent_login"
|
"persistent_login"
|
||||||
"contextmenu"
|
"contextmenu"
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Add table
Reference in a new issue