mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-05-20 13:22:34 +02:00
5945a72b01
Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com>
14 lines
315 B
Nix
14 lines
315 B
Nix
{inputs, nixpkgs, ...}:
|
|
nixpkgs.lib.nixosSystem {
|
|
modules = [
|
|
{
|
|
nixpkgs.overlays = [];
|
|
_module.args = {inherit inputs;};
|
|
}
|
|
inputs.home-manager.nixosModules.home-manager
|
|
inputs.stylix.nixosModules.stylix
|
|
inputs.nix-index-database.nixosModules.default
|
|
./configuration.nix
|
|
];
|
|
}
|