renamed flake modules

This commit is contained in:
Primrose 2024-07-12 23:37:06 +02:00
parent 32eafdd5fe
commit 05c82698bd
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA
4 changed files with 7 additions and 5 deletions

View file

@ -1,41 +0,0 @@
{ inputs, ... }:
{
perSystem =
{
system,
self',
inputs',
...
}:
{
_module.args.pkgs = import inputs.nixpkgs {
inherit system;
overlays = [
(_: _: {
agenix = inputs'.agenix.packages.default;
audio-lint = inputs'.audio-lint.packages.default;
})
(final: _: {
wired = final.fetchFromGitHub {
owner = "Toqozz";
repo = "wired-notify";
rev = "0.10.6";
hash = "sha256-AWIV/+vVwDZECZ4lFMSFyuyUKJc/gb72PiBJv6lbhnc=";
};
})
(_: _: { myPkgs = self'.packages; }) # extend pkgs with my custom set
(import ./pins.nix)
(import ./patches.nix)
];
config.allowUnfreePredicate =
pkg:
builtins.elem (inputs.nixpkgs.lib.getName pkg) [
"discord"
"languagetool"
];
};
};
}