mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-07-07 00:22:33 +02:00
19609ad781
Signed-off-by: Hadi <hadi@example.com>
19 lines
370 B
Nix
19 lines
370 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
|
|
inputs.helium-browser.nixosModules.default
|
|
./configuration.nix
|
|
];
|
|
}
|