modified: configuration.nix

modified:   flake.lock
	modified:   flake.nix
This commit is contained in:
Gregory Bednov 2026-02-17 09:05:18 +03:00
commit d8aef2a2d1
3 changed files with 81 additions and 146 deletions

View file

@ -3,39 +3,39 @@
inputs.simintech = {
url = "git://10.0.174.12/simintech_nix";
inputs.nixpkgs.follows = "nixpkgs";
}
};
inputs.mireadesktop = {
url = "git://10.0.174.12/mireadesktop";
inputs.nixpkgs.follows = "nixpkgs";
}
};
inputs.stm32cubemx = {
url = "git://10.0.174.12/stm32cubemx";
inputs.nixpkgs.follows = "nixpkgs";
}
};
inputs.packettracer7= {
url = "git://10.0.174.12/packettracer7";
inputs.nixpkgs.follows = "nixpkgs";
}
};
inputs.gostfont = {
url= "git://10.0.174.12/gostfont";
inputs.nixpkgs.follows = "nixpkgs";
}
};
inputs.nix-jetbrains-plugins = {
url = "git://10.0.174.12/nix-jetbrains-plugins";
inputs.nixpkgs.follows = "nixpkgs";
}
};
inputs.mireapython = {
url = "git://10.0.174.12/mireapython";
inputs.nixpkgs.follows = "nixpkgs";
}
};
inputs.kompas3d = {
url = "git://10.0.174.12/kompas3d";
inputs.nixpkgs.follows = "nixpkgs";
}
};
inputs.guardant = {
url = "git://10.0.174.12/guardant";
inputs.nixpkgs.follows = "nixpkgs";
}
};
outputs =
{
@ -50,15 +50,7 @@
}@inputs:
{
nixosConfigurations.nixos = nixpkgs.lib.nixosSystem {
specialArgs = {
inherit simintech;
inherit stm32cubemx;
inherit packettracer7;
inherit guardant;
inherit kompas3d;
...
inherit inputs;
};
specialArgs = { inherit inputs; };
modules = [
./configuration.nix
];