mob next [ci-skip] [ci skip] [skip ci]

lastFile:overlays/default.nix
This commit is contained in:
2025-10-08 14:41:31 +07:00
parent 2c12eb30e3
commit f416de46fd
3 changed files with 19 additions and 1547 deletions

1545
flake.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -17,10 +17,6 @@
};
import-tree.url = "github:vic/import-tree";
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
kloenk = {
url = "git+https://cyberchaos.dev/kloenk/nix";
inputs.nixpkgs.follows = "nixpkgs";
};
treefmt-nix = {
url = "github:numtide/treefmt-nix";
inputs.nixpkgs.follows = "nixpkgs";
@@ -41,6 +37,7 @@
./fmt.nix
./shell.nix
./overlays
./machines
./inventories
./modules/clan/flake-module.nix

16
overlays/default.nix Normal file
View File

@@ -0,0 +1,16 @@
{ inputs, ... }:
{
flake.overlays = {
default = final: prev: import (../pkgs/overlay.nix) inputs final prev;
};
perSystem =
{ system, ... }:
{
_module.args.pkgs = import inputs.nixpkgs {
inherit system;
overlays = [ inputs.self.overlays.default ];
config = { };
};
};
}