mirror of
https://github.com/inexcode/nixos-config.git
synced 2024-12-04 20:36:34 +00:00
19 lines
521 B
Nix
19 lines
521 B
Nix
{
|
|
inputs = {
|
|
nixpkgs.url = "nixpkgs/nixos-unstable";
|
|
inex-vscode.url = "git+https://inex.dev/inex-flakes/vscode";
|
|
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
|
|
};
|
|
outputs = { self, nixpkgs, nixos-hardware, ... }@attrs: {
|
|
nixosConfigurations.inex-framework = nixpkgs.lib.nixosSystem {
|
|
system = "x86_64-linux";
|
|
specialArgs = attrs;
|
|
modules =
|
|
[
|
|
./configuration.nix
|
|
nixos-hardware.nixosModules.framework-11th-gen-intel
|
|
];
|
|
};
|
|
};
|
|
}
|