configuration.nix/default.nix

16 lines
394 B
Nix
Raw Normal View History

2024-08-07 17:41:33 +02:00
top @ {inputs, ...}: {
imports = [./nixos ./home ./packages ./overlays ./hardware-configurations];
systems = ["x86_64-linux"];
2024-07-05 13:29:07 +02:00
flake.stateVersion = "24.05";
2024-08-07 17:41:33 +02:00
perSystem = perSystem @ {system, ...}: {
config._module.args = {
pkgs = import inputs.nixpkgs {
inherit system;
overlays = [
2024-08-02 19:27:41 +02:00
top.config.flake.overlays.default
];
};
};
};
}