2025-01-09 13:04:10 +03:00
|
|
|
{
|
2025-04-29 11:48:14 +03:00
|
|
|
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.11";
|
2026-02-16 22:55:16 +03:00
|
|
|
inputs.simintech = {
|
|
|
|
|
url = "git://10.0.174.12/simintech_nix";
|
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
2026-02-17 09:05:18 +03:00
|
|
|
};
|
2026-02-16 22:55:16 +03:00
|
|
|
inputs.mireadesktop = {
|
|
|
|
|
url = "git://10.0.174.12/mireadesktop";
|
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
2026-02-17 09:05:18 +03:00
|
|
|
};
|
2026-02-16 22:55:16 +03:00
|
|
|
inputs.stm32cubemx = {
|
|
|
|
|
url = "git://10.0.174.12/stm32cubemx";
|
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
2026-02-17 09:05:18 +03:00
|
|
|
};
|
2026-02-16 22:55:16 +03:00
|
|
|
inputs.packettracer7= {
|
|
|
|
|
url = "git://10.0.174.12/packettracer7";
|
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
2026-02-17 09:05:18 +03:00
|
|
|
};
|
2026-02-16 22:55:16 +03:00
|
|
|
inputs.gostfont = {
|
|
|
|
|
url= "git://10.0.174.12/gostfont";
|
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
2026-02-17 09:05:18 +03:00
|
|
|
};
|
2026-02-16 22:55:16 +03:00
|
|
|
inputs.nix-jetbrains-plugins = {
|
|
|
|
|
url = "git://10.0.174.12/nix-jetbrains-plugins";
|
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
2026-02-17 09:05:18 +03:00
|
|
|
};
|
2026-02-16 22:55:16 +03:00
|
|
|
inputs.mireapython = {
|
|
|
|
|
url = "git://10.0.174.12/mireapython";
|
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
2026-02-17 09:05:18 +03:00
|
|
|
};
|
2026-02-16 22:55:16 +03:00
|
|
|
inputs.kompas3d = {
|
|
|
|
|
url = "git://10.0.174.12/kompas3d";
|
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
2026-02-17 09:05:18 +03:00
|
|
|
};
|
2026-02-16 22:55:16 +03:00
|
|
|
inputs.guardant = {
|
|
|
|
|
url = "git://10.0.174.12/guardant";
|
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
2026-02-17 09:05:18 +03:00
|
|
|
};
|
2025-04-29 11:48:14 +03:00
|
|
|
|
|
|
|
|
outputs =
|
|
|
|
|
{
|
|
|
|
|
self,
|
|
|
|
|
nixpkgs,
|
|
|
|
|
simintech,
|
|
|
|
|
stm32cubemx,
|
|
|
|
|
packettracer7,
|
2026-02-16 22:55:16 +03:00
|
|
|
guardant,
|
|
|
|
|
kompas3d,
|
2025-04-29 11:48:14 +03:00
|
|
|
...
|
|
|
|
|
}@inputs:
|
|
|
|
|
{
|
|
|
|
|
nixosConfigurations.nixos = nixpkgs.lib.nixosSystem {
|
2026-02-17 09:05:18 +03:00
|
|
|
specialArgs = { inherit inputs; };
|
2025-04-29 11:48:14 +03:00
|
|
|
modules = [
|
|
|
|
|
./configuration.nix
|
|
|
|
|
];
|
2025-01-09 13:04:10 +03:00
|
|
|
};
|
2025-04-29 11:48:14 +03:00
|
|
|
};
|
|
|
|
|
}
|