mirror of
https://github.com/artagaz/nix-config.git
synced 2026-06-22 02:02:09 +07:00
12 lines
391 B
Nix
12 lines
391 B
Nix
# подключение конфиги с названием nixxx ------------------------------------------------------
|
|
{ inputs, self, ... }:
|
|
{
|
|
flake.nixosConfigurations.nixos = inputs.nixpkgs.lib.nixosSystem {
|
|
modules = [
|
|
self.nixosModules.nixxx # sys config
|
|
self.nixosModules.nixxxHardware # hardware
|
|
self.nixosModules.connect_programs # programs
|
|
];
|
|
};
|
|
}
|