code formatting
This commit is contained in:
@ -1,5 +1,4 @@
|
||||
{pkgs, ...}:
|
||||
{
|
||||
{pkgs, ...}: {
|
||||
imports = [
|
||||
./fzf.nix
|
||||
./nitch.nix
|
||||
|
@ -1,12 +1,10 @@
|
||||
{inputs, ...}: {
|
||||
# This one brings our custom packages from the 'pkgs' directory
|
||||
additions = final: prev:
|
||||
(import ../pkgs {pkgs = final;});
|
||||
additions = final: prev: (import ../pkgs {pkgs = final;});
|
||||
# This one contains whatever you want to overlay
|
||||
# You can change versions, add patches, set compilation flags, anything really.
|
||||
# https://nixos.wiki/wiki/Overlays
|
||||
modifications = final: prev: {
|
||||
|
||||
brave = prev.brave.override {
|
||||
commandLineArgs = "--password-store=gnome-libsecret";
|
||||
};
|
||||
|
@ -1,8 +1,9 @@
|
||||
{ config,
|
||||
{
|
||||
config,
|
||||
lib,
|
||||
systemConfig ? {},
|
||||
...}:
|
||||
{
|
||||
...
|
||||
}: {
|
||||
imports = [
|
||||
../../modules
|
||||
];
|
||||
@ -40,7 +41,8 @@
|
||||
};
|
||||
};
|
||||
};
|
||||
};}
|
||||
};
|
||||
}
|
||||
(lib.mkIf (systemConfig != {}) systemConfig)
|
||||
];
|
||||
}
|
||||
|
Reference in New Issue
Block a user