code formatting

This commit is contained in:
m3tam3re
2025-08-07 21:58:03 +02:00
parent 54f6c6b65b
commit ab05131567
3 changed files with 37 additions and 38 deletions

View File

@@ -1,5 +1,4 @@
{pkgs, ...}: {pkgs, ...}: {
{
imports = [ imports = [
./fzf.nix ./fzf.nix
./nitch.nix ./nitch.nix

View File

@@ -1,12 +1,10 @@
{inputs, ...}: { {inputs, ...}: {
# This one brings our custom packages from the 'pkgs' directory # This one brings our custom packages from the 'pkgs' directory
additions = final: prev: additions = final: prev: (import ../pkgs {pkgs = final;});
(import ../pkgs {pkgs = final;});
# This one contains whatever you want to overlay # This one contains whatever you want to overlay
# You can change versions, add patches, set compilation flags, anything really. # You can change versions, add patches, set compilation flags, anything really.
# https://nixos.wiki/wiki/Overlays # https://nixos.wiki/wiki/Overlays
modifications = final: prev: { modifications = final: prev: {
brave = prev.brave.override { brave = prev.brave.override {
commandLineArgs = "--password-store=gnome-libsecret"; commandLineArgs = "--password-store=gnome-libsecret";
}; };

View File

@@ -1,8 +1,9 @@
{ config, {
config,
lib, lib,
systemConfig ? {}, systemConfig ? {},
...}: ...
{ }: {
imports = [ imports = [
../../modules ../../modules
]; ];
@@ -40,7 +41,8 @@
}; };
}; };
}; };
};} };
}
(lib.mkIf (systemConfig != {}) systemConfig) (lib.mkIf (systemConfig != {}) systemConfig)
]; ];
} }