2023-08-14 07:11:18 -04:00
|
|
|
{
|
|
|
|
inputs.nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
|
|
|
|
inputs.home-manager.url = "github:nix-community/home-manager";
|
|
|
|
inputs.home-manager.inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
|
|
|
|
outputs = {self, nixpkgs, home-manager }: {
|
2023-08-14 07:21:09 -04:00
|
|
|
nixosConfigurations = {
|
2023-08-14 07:23:27 -04:00
|
|
|
nix = nixpkgs.lib.nixosSystem {
|
2023-08-14 07:21:09 -04:00
|
|
|
system = "x86_64-linux";
|
|
|
|
modules = [
|
|
|
|
./configuration.nix
|
|
|
|
];
|
|
|
|
};
|
2023-08-14 07:18:50 -04:00
|
|
|
};
|
2023-08-14 07:18:25 -04:00
|
|
|
};
|
2023-08-14 07:11:18 -04:00
|
|
|
}
|