2023-06-01 14:39:07 -05:00
|
|
|
{
|
2023-06-08 21:25:22 -05:00
|
|
|
inputs = { nixpkgs.url = "nixpkgs/nixos-unstable"; };
|
2023-06-01 14:39:07 -05:00
|
|
|
|
|
|
|
outputs = { self, nixpkgs }: {
|
|
|
|
nixosConfigurations = {
|
|
|
|
eve-psr-nix0 = nixpkgs.lib.nixosSystem {
|
|
|
|
system = "x86_64-linux";
|
2023-06-08 21:25:22 -05:00
|
|
|
modules = [ ./configuration.nix ];
|
2023-06-01 14:39:07 -05:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|