mirror of
https://github.com/inexcode/nixos-config.git
synced 2024-12-04 20:36:34 +00:00
24 lines
565 B
Nix
24 lines
565 B
Nix
{
|
|
|
|
inputs = {
|
|
#nixpkgs.url = "nixpkgs/nixos-unstable";
|
|
nixpkgs.url = "path:/home/inex/dev/nixpkgs";
|
|
inex-vscode.url = "git+https://inex.dev/inex-flakes/vscode";
|
|
# chaotic.url = "github:chaotic-cx/nyx/nyxpkgs-unstable";
|
|
};
|
|
|
|
|
|
outputs = { self, nixpkgs, inex-vscode, ... }@attrs: {
|
|
nixosConfigurations.inex-pc = nixpkgs.lib.nixosSystem {
|
|
system = "x86_64-linux";
|
|
specialArgs = attrs;
|
|
modules =
|
|
[
|
|
./configuration.nix
|
|
./pipewire.nix
|
|
#chaotic.nixosModules.default
|
|
];
|
|
};
|
|
};
|
|
}
|